From 0dcab2a86a6e842571eb194591deb397bb98c023 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 6 Apr 2006 16:47:51 +0000 Subject: 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. --- src/mesa/drivers/dri/Makefile.template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/mesa/drivers/dri/Makefile.template b/src/mesa/drivers/dri/Makefile.template index 9e1b36252f..f07dda3171 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 -- cgit v1.2.3