aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.nmake
blob: 018733d60c63d105871d2694c37957255ba870c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## 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 ..

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