summaryrefslogtreecommitdiffstats
path: root/src/windows/makefile
blob: 3ac5a7f025768c64ca8796d4189364a9ccd2f558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# Makefile that recurses into cns subdirectory.
#
all::
	@echo Making in windows\cns
	cd cns
	-$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD)
	cd ..

clean::
	@echo Making clean in windows\cns
	cd cns
	-$(MAKE) -$(MAKEFLAGS) clean
	cd ..