summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2008-03-08 17:19:39 -0500
committerKristian Høgsberg <krh@redhat.com>2008-03-08 17:19:39 -0500
commit47d563006de646b039c456ffc8379ca8ded3d5a5 (patch)
treebe5416b6612f79d0f3a6eaa3c7e0b6b5726cbbf8 /src/mesa
parent6fd82f6fbd208dc7b1839ea408a5fb28589ee622 (diff)
Move libGL install target to the libGL Makefile.
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/Makefile16
-rw-r--r--src/mesa/gl.pc.in11
2 files changed, 1 insertions, 26 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile
index d0c78b71ee..87c5e6126d 100644
--- a/src/mesa/Makefile
+++ b/src/mesa/Makefile
@@ -132,15 +132,6 @@ $(TOP)/$(LIB_DIR)/$(OSMESA_LIB_NAME): $(OSMESA_DRIVER_OBJECTS) $(OSMESA16_OBJECT
######################################################################
-# libGL 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),'
-gl.pc: gl.pc.in
- $(pcedit) $< > $@
-
-######################################################################
# Generic stuff
depend: $(ALL_SOURCES)
@@ -160,15 +151,10 @@ subdirs:
fi
-install: default gl.pc
+install: default
$(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/*.h $(DESTDIR)$(INSTALL_DIR)/include/GL
- @if [ -e $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME) ]; then \
- $(INSTALL) $(TOP)/$(LIB_DIR)/libGL* $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR); \
- fi
- $(INSTALL) -m 644 gl.pc $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR)/pkgconfig
@if [ -e $(TOP)/$(LIB_DIR)/$(OSMESA_LIB_NAME) ]; then \
$(INSTALL) $(TOP)/$(LIB_DIR)/libOSMesa* $(DESTDIR)$(INSTALL_DIR)/$(LIB_DIR); \
fi
diff --git a/src/mesa/gl.pc.in b/src/mesa/gl.pc.in
deleted file mode 100644
index 4b144ffa4b..0000000000
--- a/src/mesa/gl.pc.in
+++ /dev/null
@@ -1,11 +0,0 @@
-prefix=@INSTALL_DIR@
-exec_prefix=${prefix}
-libdir=${exec_prefix}/@LIB_DIR@
-includedir=${prefix}/include
-
-Name: gl
-Description: Mesa OpenGL library
-Requires:
-Version: @VERSION@
-Libs: -L${libdir} -lGL
-Cflags: -I${includedir}