diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-01-28 22:18:03 +0000 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-01-28 22:18:03 +0000 | 
| commit | bfd2bd2b3a24723b3a9f5fc7d590ea639a92482a (patch) | |
| tree | 8592c38f7d19a431d9ecedc0a74ebd781fe26a80 | |
| parent | f9b97d95f9bf9286107586d6afdadae74bb94d36 (diff) | |
added -I. to .S.o rule
| -rw-r--r-- | src/mesa/Makefile.X11 | 7 | ||||
| -rw-r--r-- | src/mesa/main/Makefile.X11 | 7 | 
2 files changed, 6 insertions, 8 deletions
| diff --git a/src/mesa/Makefile.X11 b/src/mesa/Makefile.X11 index d156a4c41b..8ea152369c 100644 --- a/src/mesa/Makefile.X11 +++ b/src/mesa/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.14 2000/01/23 17:48:16 brianp Exp $ +# $Id: Makefile.X11,v 1.15 2000/01/28 22:18:03 brianp Exp $  # Mesa 3-D graphics library  # Version:  3.3 @@ -125,8 +125,7 @@ DRIVER_SOURCES = \  	FX/fxtexman.c \  	FX/fxtrifuncs.c \  	FX/fxvsetup.c \ -	FX/fxglidew.c  -#	GGI/ggimesa.c +	FX/fxglidew.c  ASM_SOURCES =  @@ -144,7 +143,7 @@ OBJECTS = $(ASM_SOURCES:.S=.o) \  	$(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< -o $@  .S.o: -	$(CC) -c $(CFLAGS) $< -o $@ +	$(CC) -c -I. $(CFLAGS) $< -o $@  # UGH! These rules shouldn't be needed but IRIX's make (and others?) needs them diff --git a/src/mesa/main/Makefile.X11 b/src/mesa/main/Makefile.X11 index d156a4c41b..8ea152369c 100644 --- a/src/mesa/main/Makefile.X11 +++ b/src/mesa/main/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.14 2000/01/23 17:48:16 brianp Exp $ +# $Id: Makefile.X11,v 1.15 2000/01/28 22:18:03 brianp Exp $  # Mesa 3-D graphics library  # Version:  3.3 @@ -125,8 +125,7 @@ DRIVER_SOURCES = \  	FX/fxtexman.c \  	FX/fxtrifuncs.c \  	FX/fxvsetup.c \ -	FX/fxglidew.c  -#	GGI/ggimesa.c +	FX/fxglidew.c  ASM_SOURCES =  @@ -144,7 +143,7 @@ OBJECTS = $(ASM_SOURCES:.S=.o) \  	$(CC) -c -I. -I$(INCDIR) $(CFLAGS) $< -o $@  .S.o: -	$(CC) -c $(CFLAGS) $< -o $@ +	$(CC) -c -I. $(CFLAGS) $< -o $@  # UGH! These rules shouldn't be needed but IRIX's make (and others?) needs them | 
