aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.nmake
blob: fa6e388e971cec60a72a7cba68cd68f3af170ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id$

all: lemon

clean:
	cd lemon
	$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
	cd ..

distclean: clean
	cd lemon
	$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
	cd ..

maintainer-clean: distclean
	cd lemon
	$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
	cd ..

lemon::
	cd lemon
	$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
	cd ..