aboutsummaryrefslogtreecommitdiff
path: root/dist/nmakefile
blob: 146acc6b2fc0a40645a5df0bb57c3f3afa62400d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
dirs = libxsde examples

all:
	@for %i in ( $(dirs) ) do \
@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile" || exit 1

test:
	@for %i in ( $(dirs) ) do \
@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@" || exit 1

gen:
	@for %i in ( $(dirs) tests ) do \
@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@" || exit 1

clean cleanobj:
	@for %i in ( $(dirs) tests ) do \
@cmd /c "echo entering %i && cd %i && $(MAKE) /nologo /f nmakefile $@"