Move "include" command to end, so that the first target is "all".
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2004 21:33:26 +0000 (21:33 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 29 Aug 2004 21:33:26 +0000 (21:33 +0000)
src/Makefile.inc

index a76c4a9cc3ad429345be1eb9a9451af6da509d37..472d34b1c1afaadbb7ada2eae661941a55230806 100644 (file)
@@ -7,8 +7,6 @@ VPATH := $(VPATH):$(TOP_SRCDIR)/lib
 VPATH := $(VPATH):$(TOP_SRCDIR)/filesys
 VPATH := $(VPATH):$(TOP_SRCDIR)/userprog
 
--include *.d
-
 DEFINES += -DCNACHOS86
 WARNINGS = -Wall -W -Wstrict-prototypes -Wmissing-prototypes
 CFLAGS = -g -O3 -MMD $(WARNINGS) $(INCLUDES) $(DEFINES)
@@ -74,3 +72,5 @@ diskimage.bin: loader.bin kernel.bin
 
 clean:
        rm -f *.o *.d *.bin kernel.bin.data kernel.bin.pad intr-stubs.S
+
+-include *.d