You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
541 B
33 lines
541 B
!ifdef NTMAKEENV
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
!else
|
|
|
|
MAKE = nmake /NOLOGO
|
|
UTILDIR=tools\x86\utils
|
|
|
|
dirs = tools src
|
|
|
|
puredirs = src
|
|
|
|
all: root.inc
|
|
for %i in ($(dirs)) do cd %i && $(MAKE) all && cd ..
|
|
|
|
pure: root.inc
|
|
for %i in ($(puredirs)) do cd %i && $(MAKE) pure && cd ..
|
|
|
|
depend: root.inc
|
|
for %i in ($(dirs)) do cd %i && $(MAKE) depend && cd ..
|
|
|
|
clean: root.inc
|
|
for %i in ($(dirs)) do cd %i && $(MAKE) clean && cd ..
|
|
|
|
fresh: clean depend all
|
|
|
|
root.inc:
|
|
$(UTILDIR)\perl $(UTILDIR)\setroot.pl >root.inc
|
|
|
|
!endif
|