OK, does it matter in which order "extern" and "declspec" appear?
[metze/wireshark/wip.git] / tools / Makefile.nmake
old mode 100755 (executable)
new mode 100644 (file)
index 876f8aa..d1a490b
@@ -1,21 +1,33 @@
-## Makefile for building ethereal.exe with Microsoft C and nmake
+## Makefile for building wireshark.exe with Microsoft C and nmake
 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
 #
-# $Id: Makefile.nmake,v 1.5 2003/10/13 19:04:56 guy Exp $
+# $Id$
 
 all: lemon
 
-clean:
+clean-local:
+       rm -f *.pyc
+
+clean:  clean-local
        cd lemon
        $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
        cd ..
 
-distclean: clean
+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
-       $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
+       ..\native-nmake $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
        cd ..