diff options
author | Jakob Bornecrantz <[email protected]> | 2009-02-02 14:18:50 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-02-02 14:18:50 +0100 |
commit | be0a6c3598a5a18a5a605b155bae5c986d3fc3b3 (patch) | |
tree | 0bd650716edeeb0b085a7a9d38e475adf4420c41 /src/gallium/Makefile.template | |
parent | b608d64243f87677b36628e7923dde6a66a722c3 (diff) |
gallium: Stop relinking drivers and aux libraries
Diffstat (limited to 'src/gallium/Makefile.template')
-rw-r--r-- | src/gallium/Makefile.template | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/Makefile.template b/src/gallium/Makefile.template index 4e462b5c976..655e949ca2d 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) |