MSWSP: give names to PropertySet ids
[wireshark-wip.git] / tools / Makefile.nmake
blobd1a490b03d6e8b13670d870cd8abd5186c79a1de
1 ## Makefile for building wireshark.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
4 # $Id$
6 all: lemon
8 clean-local:
9         rm -f *.pyc
11 clean:  clean-local
12         cd lemon
13         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
14         cd ..
16 distclean-local: clean-local
18 distclean: distclean-local
19         cd lemon
20         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
21         cd ..
23 maintainer-clean-local: distclean-local
25 maintainer-clean: maintainer-clean-local
26         cd lemon
27         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake maintainer-clean
28         cd ..
30 lemon::
31         cd lemon
32         ..\native-nmake $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
33         cd ..