OK, does it matter in which order "extern" and "declspec" appear?
[metze/wireshark/wip.git] / tools / Makefile.nmake
1 ## Makefile for building wireshark.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
3 #
4 # $Id$
5
6 all: lemon
7
8 clean-local:
9         rm -f *.pyc
10
11 clean:  clean-local
12         cd lemon
13         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
14         cd ..
15
16 distclean-local: clean-local
17
18 distclean: distclean-local
19         cd lemon
20         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
21         cd ..
22
23 maintainer-clean-local: distclean-local
24
25 maintainer-clean: maintainer-clean-local
26         cd lemon
27         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
28         cd ..
29
30 lemon::
31         cd lemon
32         ..\native-nmake $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
33         cd ..