From: Jakob Bornecrantz Date: Tue, 1 Jun 2010 16:33:15 +0000 (+0100) Subject: gallium: Use correct defines in Xorg template makefile X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=94d5239511e8ee3b34ee7f7061f616370c3850cf;p=mesa.git gallium: Use correct defines in Xorg template makefile --- diff --git a/src/gallium/targets/Makefile.xorg b/src/gallium/targets/Makefile.xorg index e9f70591c27..4237f944e0d 100644 --- a/src/gallium/targets/Makefile.xorg +++ b/src/gallium/targets/Makefile.xorg @@ -57,16 +57,16 @@ install: ##### RULES ##### %.s: %.c - $(CC) -S $(INCLUDES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@ + $(CC) -S $(INCLUDES) $(CFLAGS) $(DRIVER_DEFINES) $< -o $@ %.o: %.c - $(CC) -c $(INCLUDES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@ + $(CC) -c $(INCLUDES) $(CFLAGS) $(DRIVER_DEFINES) $< -o $@ %.o: %.cpp - $(CXX) -c $(INCLUDES) $(CXXFLAGS) $(LIBRARY_DEFINES) $< -o $@ + $(CXX) -c $(INCLUDES) $(CXXFLAGS) $(DRIVER_DEFINES) $< -o $@ %.o: %.S - $(CC) -c $(INCLUDES) $(CFLAGS) $(LIBRARY_DEFINES) $< -o $@ + $(CC) -c $(INCLUDES) $(CFLAGS) $(DRIVER_DEFINES) $< -o $@ sinclude depend