summaryrefslogtreecommitdiff
path: root/src/mesa/Makefile
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-06-06 12:27:14 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-06-06 12:27:14 -0600
commit1d5b51abc8e9b3ba53a0854c27694309e740f256 (patch)
treeb6cd156bd5eaacaefe4d9a37a907eff92aa901a5 /src/mesa/Makefile
parentbde6b57e48693ee87676f4ff1e0bef54b426eeb5 (diff)
move the install rules
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r--src/mesa/Makefile40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile
index 5cdc7d5751..061a7bf4f0 100644
--- a/src/mesa/Makefile
+++ b/src/mesa/Makefile
@@ -24,26 +24,6 @@ include sources
default: depend subdirs libmesa.a libglapi.a driver_subdirs
-# this doesn't work yet but is probably the way to go in the future
-new_install:
- (cd drivers && $(MAKE) install)
-
-
-# XXX replace this with new_install above someday
-install: default
- @for driver in $(DRIVER_DIRS) ; do \
- case "$$driver" in \
- osmesa) if [ "$(DRIVER_DIRS)" = osmesa ]; then \
- $(MAKE) install-headers install-osmesa || exit 1 ; \
- else \
- $(MAKE) install-osmesa || exit 1 ; \
- fi ;; \
- dri) $(MAKE) install-libgl install-dri || exit 1 ;; \
- *) $(MAKE) install-libgl || exit 1 ;; \
- esac ; \
- done
-
-
######################################################################
# Helper libraries used by many drivers:
@@ -88,6 +68,26 @@ depend: $(ALL_SOURCES)
######################################################################
# Installation rules
+# this isn't fleshed out yet but is probably the way to go in the future
+new_install:
+ (cd drivers && $(MAKE) install)
+
+
+# XXX replace this with new_install above someday
+install: default
+ @for driver in $(DRIVER_DIRS) ; do \
+ case "$$driver" in \
+ osmesa) if [ "$(DRIVER_DIRS)" = osmesa ]; then \
+ $(MAKE) install-headers install-osmesa || exit 1 ; \
+ else \
+ $(MAKE) install-osmesa || exit 1 ; \
+ fi ;; \
+ dri) $(MAKE) install-libgl install-dri || exit 1 ;; \
+ *) $(MAKE) install-libgl || exit 1 ;; \
+ esac ; \
+ done
+
+
pcedit = sed \
-e 's,@INSTALL_DIR@,$(INSTALL_DIR),' \
-e 's,@LIB_DIR@,$(LIB_DIR),' \