From 6d3284efd4fcead463b69dc854258a8f32689536 Mon Sep 17 00:00:00 2001
From: Brian Paul <brian.paul@tungstengraphics.com>
Date: Fri, 1 Jul 2005 01:54:38 +0000
Subject: fix dependencies

---
 src/mesa/x86/Makefile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/mesa/x86/Makefile b/src/mesa/x86/Makefile
index 0b15357c57..3c6a6b11c0 100644
--- a/src/mesa/x86/Makefile
+++ b/src/mesa/x86/Makefile
@@ -1,11 +1,9 @@
 # src/mesa/x86/Makefile
 
 TOP = ../../..
-
 include $(TOP)/configs/current
 
 
-
 INCLUDE_DIRS = \
 	-I$(TOP)/include/GL \
 	-I$(TOP)/include \
@@ -16,15 +14,17 @@ INCLUDE_DIRS = \
 	-I../tnl
 
 
-default: matypes.h
+default: gen_matypes matypes.h
 
 clean:
 	rm -f matypes.h gen_matypes
 
 
-# need some special rules here, unfortunately
-matypes.h: ../main/mtypes.h ../tnl/t_context.h gen_matypes.c
+gen_matypes: gen_matypes.c
 	$(CC) $(INCLUDE_DIRS) $(CFLAGS) gen_matypes.c -o gen_matypes
+
+# need some special rules here, unfortunately
+matypes.h: ../main/mtypes.h ../tnl/t_context.h gen_matypes
 	./gen_matypes > matypes.h
 
 common_x86_asm.o: matypes.h
-- 
cgit v1.2.3