From: Brian Paul Date: Thu, 6 Apr 2006 16:47:51 +0000 (+0000) Subject: Replace DEFINES with DRIVER_DEFINES. If a driver needs to set extra flags, X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0dcab2a86a6e842571eb194591deb397bb98c023;p=mesa.git Replace DEFINES with DRIVER_DEFINES. If a driver needs to set extra flags, do so with DRIVER_DEFINES. This eliminates the duplicated flags we were passing to each cc command. --- diff --git a/src/mesa/drivers/dri/Makefile.template b/src/mesa/drivers/dri/Makefile.template index 9e1b36252ff..f07dda31714 100644 --- a/src/mesa/drivers/dri/Makefile.template +++ b/src/mesa/drivers/dri/Makefile.template @@ -57,10 +57,10 @@ SHARED_INCLUDES = \ ##### RULES ##### .c.o: - $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ + $(CC) -c $(INCLUDES) $(CFLAGS) $(DRIVER_DEFINES) $< -o $@ .S.o: - $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@ + $(CC) -c $(INCLUDES) $(CFLAGS) $(DRIVER_DEFINES) $< -o $@ ##### TARGETS ##### @@ -88,8 +88,8 @@ $(LIB_DIR)/$(LIBNAME): $(LIBNAME) .PHONY: depend depend: $(C_SOURCES) $(ASM_SOURCES) $(SYMLINKS) touch depend - $(MKDEP) $(MKDEP_OPTIONS) $(DEFINES) $(INCLUDES) $(C_SOURCES) $(ASM_SOURCES) \ - >& /dev/null + $(MKDEP) $(MKDEP_OPTIONS) $(DRIVER_DEFINES) $(INCLUDES) $(C_SOURCES) \ + $(ASM_SOURCES) >& /dev/null # Emacs tags