aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/nmakefile
blob: 1ae0efba10697c1b080d76125e1a1281754cb3e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
dirs = hybrid parser serializer

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

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

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