From 0a59ca6cae6ef24990f1c41c8c7857214489443c Mon Sep 17 00:00:00 2001 From: Gareth Hughes Date: Wed, 28 Mar 2001 20:44:43 +0000 Subject: New type system for assembly code. Asm files should now include matypes.h, which includes assyntax.h and is generated from the core Mesa header files. --- src/mesa/Makefile.X11 | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/mesa/Makefile.X11') diff --git a/src/mesa/Makefile.X11 b/src/mesa/Makefile.X11 index fe2e4ce..beee04a 100644 --- a/src/mesa/Makefile.X11 +++ b/src/mesa/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.48 2001/03/28 17:19:58 brianp Exp $ +# $Id: Makefile.X11,v 1.49 2001/03/28 20:44:43 gareth Exp $ # Mesa 3-D graphics library # Version: 3.5 @@ -76,7 +76,6 @@ CORE_SOURCES = \ glapi.c \ glthread.c \ hash.c \ - highpc.c \ hint.c \ histogram.c \ image.c \ @@ -84,7 +83,6 @@ CORE_SOURCES = \ light.c \ lines.c \ logic.c \ - lowpc.c \ masking.c \ matrix.c \ mem.c \ @@ -190,7 +188,8 @@ ASM_SOURCES = ADDITIONAL_OBJ = -OBJECTS = $(ASM_SOURCES:.S=.o) \ +OBJECTS = $(GEN_SOURCES) \ + $(ASM_SOURCES:.S=.o) \ $(CORE_SOURCES:.c=.o) \ $(DRIVER_SOURCES:.c=.o) \ $(ADDITIONAL_OBJ) @@ -283,6 +282,10 @@ X86/3dnow.o: X86/3dnow.c $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< -o $@ X86/katmai.o: X86/katmai.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 GGI/ggimesa.o: GGI/ggimesa.c $(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< -o $@ -- cgit v1.1