aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.nmake
blob: e89f47d045cf6ee63c09790001bf82f0febb37c5 (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
27
28
29
30
31
## Makefile for building wireshark.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake

all: lemon

clean-local:
	rm -f *.pyc

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

distclean-local: clean-local

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

maintainer-clean-local: distclean-local

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

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