summaryrefslogtreecommitdiff
path: root/src/glu
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
parentf5557c3a528fbad3750aaa18595dc3548b600609 (diff)
pkg-config support
Diffstat (limited to 'src/glu')
-rw-r--r--src/glu/Makefile12
-rw-r--r--src/glu/glu.pc.in11
2 files changed, 22 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 \
diff --git a/src/glu/glu.pc.in b/src/glu/glu.pc.in
new file mode 100644
index 0000000000..5d6e52a75e
--- /dev/null
+++ b/src/glu/glu.pc.in
@@ -0,0 +1,11 @@
+prefix=@INSTALL_DIR@
+exec_prefix=${prefix}
+libdir=${exec_prefix}/@LIB_DIR@
+includedir=${prefix}/include
+
+Name: glu
+Description: Mesa OpenGL Utility library
+Requires: gl
+Version: @VERSION@
+Libs: -L${libdir} -lGLU
+Cflags: -I${includedir}