diff options
author | Brian <[email protected]> | 2008-01-23 16:03:19 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-01-23 16:03:19 -0700 |
commit | 4875b4030490d7756d607d42821deed0035e1ec4 (patch) | |
tree | 269cbe2e2170e07e970e659558ecbe20917da8d8 /src/glut/mini/Makefile | |
parent | 2a077500a84819d1e6ac62e84ded130aa655c5e9 (diff) |
Assorted patches for miniglx/linux-solo (Gavin Li <[email protected]>)
Diffstat (limited to 'src/glut/mini/Makefile')
-rw-r--r-- | src/glut/mini/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/glut/mini/Makefile b/src/glut/mini/Makefile index 87ff43ce569..a73198a68cc 100644 --- a/src/glut/mini/Makefile +++ b/src/glut/mini/Makefile @@ -72,6 +72,23 @@ tags: etags `find . -name \*.[ch]` `find ../include` +# glut pkgconfig file +pcedit = sed \ + -e 's,@INSTALL_DIR@,$(INSTALL_DIR),' \ + -e 's,@LIB_DIR@,$(LIB_DIR),' \ + -e 's,@VERSION@,$(GLUT_MAJOR).$(GLUT_MINOR).$(GLUT_TINY),' +glut.pc: glut.pc.in + $(pcedit) $< > $@ + +install: glut.pc + $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/include/GL + $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR) + $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)/pkgconfig + $(INSTALL) -m 644 $(TOP)/include/GL/glut.h $(DESTDIR)$(INSTALL_DIR)/include/GL + $(INSTALL) $(TOP)/$(LIB_DIR)/libglut* $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR) + $(INSTALL) -m 644 glut.pc $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)/pkgconfig + + # Remove .o and backup files clean: depend -rm -f depend |