diff options
author | Jakob Bornecrantz <[email protected]> | 2010-06-01 17:33:15 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-06-04 19:54:11 +0100 |
commit | 94d5239511e8ee3b34ee7f7061f616370c3850cf (patch) | |
tree | 474806a83df7b2ab3fb7f23fc1eaadb14e90a840 /src/gallium | |
parent | 30456f775c8146d4559280589502eb4e5634f24b (diff) |
gallium: Use correct defines in Xorg template makefile
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/targets/Makefile.xorg | 8 |
1 files changed, 4 insertions, 4 deletions
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 |