summaryrefslogtreecommitdiff
path: root/src/mesa/Makefile.X11
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-06-10 19:06:20 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-06-10 19:06:20 +0000
commit5f3439916b74ed792ad12d1e614a2a5bc0a94b3a (patch)
treeebf05c717eadbd1c290e0f8cf336122774e74414 /src/mesa/Makefile.X11
parent5e04bcf6de7a0fceb8ea0893238919c24cef137d (diff)
fixes for x86 builds
Diffstat (limited to 'src/mesa/Makefile.X11')
-rw-r--r--src/mesa/Makefile.X1132
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mesa/Makefile.X11 b/src/mesa/Makefile.X11
index fbc5713d03..33b888095c 100644
--- a/src/mesa/Makefile.X11
+++ b/src/mesa/Makefile.X11
@@ -208,23 +208,23 @@ INCLUDE_DIRS = \
$(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
-X86/x86.o: X86/x86.c
- $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< -o $@
-X86/common_x86.o: X86/common_x86.c
- $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< -o $@
-X86/common_x86_asm.o: X86/common_x86_asm.S X86/matypes.h
-X86/3dnow.o: X86/3dnow.c
- $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< -o $@
-X86/sse.o: X86/sse.c
- $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< -o $@
-X86/matypes.h: mtypes.h tnl/t_context.h X86/gen_matypes.c
- $(CC) -I. -I$(INCDIR) $(CFLAGS) X86/gen_matypes.c -o X86/gen_matypes
- ./X86/gen_matypes > X86/matypes.h
- rm -f X86/gen_matypes X86/*.o
-
-# We have X86/matypes.h depend on X86/matypes.h so that if ASM_SOURCES
+x86/x86.o: x86/x86.c
+ $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
+x86/common_x86.o: x86/common_x86.c
+ $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
+x86/common_x86_asm.o: x86/common_x86_asm.S x86/matypes.h
+x86/3dnow.o: x86/3dnow.c
+ $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
+x86/sse.o: x86/sse.c
+ $(CC) -c $(INCLUDE_DIRS) $(CFLAGS) $< -o $@
+x86/matypes.h: main/mtypes.h tnl/t_context.h x86/gen_matypes.c
+ $(CC) $(INCLUDE_DIRS) $(CFLAGS) x86/gen_matypes.c -o x86/gen_matypes
+ ./x86/gen_matypes > x86/matypes.h
+ rm -f x86/gen_matypes x86/*.o
+
+# We have x86/matypes.h depend on x86/matypes.h so that if ASM_SOURCES
# is empty we don't get an invalid Makefile.
-$(ASM_SOURCES) X86/matypes.h: X86/matypes.h
+$(ASM_SOURCES) x86/matypes.h: x86/matypes.h
##### TARGETS #####