Files
admin
base
com
developer
drivers
ds
enduser
inetcore
inetsrv
loc
mergedcomponents
multimedia
danim
doc
extinc
extlib
setup
src
tools
axadiet.bat
bckupsrc.bat
buildall.bat
common.inc
copybld.bat
creatzip.bat
dabuild.cmd
dirs
ie4dbg.bat
iebldall.bat
iebldno.bat
iesetenv.bat
makefil0
makefile
mkversion.bat
setenv.bat
setver.bat
ddk
directx
dshow
embedded
inc
lib
media
netshow
opengl
private
published
reality
resmgr
dirs
multimedia.mk
project.mk
net
printscan
public
published
sdktools
shell
termsrv
tools
windows
dirs
makefil0
2025-04-27 07:49:33 -04:00

34 lines
541 B
Makefile

!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