From: Ben Pfaff Date: Sun, 29 Aug 2004 21:33:26 +0000 (+0000) Subject: Move "include" command to end, so that the first target is "all". X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8b9ed07d2966eaf5b523f5061245b4a1c551929;p=pintos-anon Move "include" command to end, so that the first target is "all". --- diff --git a/src/Makefile.inc b/src/Makefile.inc index a76c4a9..472d34b 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -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