summaryrefslogtreecommitdiff
path: root/src/gallium/Makefile.template
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2009-02-02 14:18:50 +0100
committerJakob Bornecrantz <jakob@vmware.com>2009-02-02 14:18:50 +0100
commitbe0a6c3598a5a18a5a605b155bae5c986d3fc3b3 (patch)
tree0bd650716edeeb0b085a7a9d38e475adf4420c41 /src/gallium/Makefile.template
parentb608d64243f87677b36628e7923dde6a66a722c3 (diff)
gallium: Stop relinking drivers and aux libraries
Diffstat (limited to 'src/gallium/Makefile.template')
-rw-r--r--src/gallium/Makefile.template6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/Makefile.template b/src/gallium/Makefile.template
index 4e462b5c97..655e949ca2 100644
--- a/src/gallium/Makefile.template
+++ b/src/gallium/Makefile.template
@@ -36,11 +36,11 @@ INCLUDES = \
##### TARGETS #####
-default: depend symlinks $(LIBNAME)
+default: depend symlinks lib$(LIBNAME).a
-$(LIBNAME): $(OBJECTS) Makefile $(TOP)/src/gallium/Makefile.template
- $(TOP)/bin/mklib -o $@ -static $(OBJECTS) $(DRIVER_LIBS)
+lib$(LIBNAME).a: $(OBJECTS) Makefile $(TOP)/src/gallium/Makefile.template
+ $(TOP)/bin/mklib -o $(LIBNAME) -static $(OBJECTS) $(DRIVER_LIBS)
depend: $(C_SOURCES) $(CPP_SOURCES) $(ASM_SOURCES) $(SYMLINKS)