aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.nmake
blob: 6e1585d80a8a513294f26cdc5b828e06fefb3b59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.3 2002/02/27 09:42:49 guy Exp $

all: lemon


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


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