Further dependency tracking fixes

svn path=/trunk/; revision=1681
This commit is contained in:
David Welch 2001-03-12 19:23:48 +00:00
parent 7853be9c86
commit c20f2479b6
3 changed files with 9 additions and 5 deletions

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.16 2001/03/12 17:32:54 dwelch Exp $ # $Id: Makefile,v 1.17 2001/03/12 19:23:48 dwelch Exp $
# #
# ReactOS Operating System # ReactOS Operating System
# #
@ -127,7 +127,8 @@ OBJECTS_MM = \
mm/wset.o \ mm/wset.o \
mm/mminit.o \ mm/mminit.o \
mm/kmap.o \ mm/kmap.o \
mm/mpw.o mm/mpw.o \
mm/pageop.o
OBJECTS_MM_I386 = \ OBJECTS_MM_I386 = \
mm/i386/memsafe.o \ mm/i386/memsafe.o \

View file

@ -1,2 +1,3 @@
s@ /[^ ]*@@g s@ /[^ ]*@@g
s@^\(.*\)\.o:@.\1.d \1.o:@ s@^\(.*\)\.o:@.\1.d \1.o:@

View file

@ -12,6 +12,8 @@ ifeq ($(HOST),mingw32-linux)
TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi) TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
endif endif
DOT := \.
# #
# Choose various options # Choose various options
# #
@ -48,7 +50,7 @@ DOSCLI = yes
FLOPPY_DIR = A: FLOPPY_DIR = A:
# DIST_DIR should be relative from the top of the tree # DIST_DIR should be relative from the top of the tree
DIST_DIR = dist DIST_DIR = dist
DOT = \. DOT := \\.
endif endif
CC = $(PREFIX)gcc CC = $(PREFIX)gcc