summaryrefslogtreecommitdiff
path: root/src/glu/Makefile
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2007-09-12 10:03:05 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-09-12 10:03:05 -0600
commit94617bc6d505b056b028dc0978ef4a94ee47fa7d (patch)
treee7f3e6a92ada27fe302d51f5ef88bcb84275870c /src/glu/Makefile
parentf5557c3a528fbad3750aaa18595dc3548b600609 (diff)
pkg-config support
Diffstat (limited to 'src/glu/Makefile')
-rw-r--r--src/glu/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/glu/Makefile b/src/glu/Makefile
index b8c55db6d0..836baa684c 100644
--- a/src/glu/Makefile
+++ b/src/glu/Makefile
@@ -13,9 +13,19 @@ default: $(TOP)/configs/current
(cd $$dir ; $(MAKE)) ; \
done
-install:
+# GLU pkg-config file
+pcedit = sed \
+ -e 's,@INSTALL_DIR@,$(INSTALL_DIR),' \
+ -e 's,@LIB_DIR@,$(LIB_DIR),' \
+ -e 's,@VERSION@,$(MESA_MAJOR).$(MESA_MINOR).$(MESA_TINY),'
+glu.pc: glu.pc.in
+ $(pcedit) $< > $@
+
+install: glu.pc
$(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
+ $(INSTALL) -d $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)/pkgconfig
$(INSTALL) $(TOP)/$(LIB_DIR)/libGLU.* $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)
+ $(INSTALL) -m 644 glu.pc $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)/pkgconfig
clean:
@for dir in $(SUBDIRS) ; do \