aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2001-03-06 13:08:13 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2001-03-06 13:08:13 +0000
commite4cb3c578ceaf1408953a72fed81d61a80757e4f (patch)
treea366efd3ed83b2e9e6f56ebfe30c26e2aaa2d258 /tools
parentf29cb13c68362519d1fba71212f7cc54c1e2548d (diff)
Add some win32-specific targets in .cvsignore's.
Replace 'nmake' with $(MAKE) /$(MAKEFLAGS), from Mike Frisch. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3108 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools')
-rwxr-xr-xtools/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile.nmake b/tools/Makefile.nmake
index ef1885c948..9f78b6ccc7 100755
--- a/tools/Makefile.nmake
+++ b/tools/Makefile.nmake
@@ -4,10 +4,10 @@ all: lemon
clean:
cd lemon
- nmake -f Makefile.nmake clean
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
lemon::
cd lemon
- nmake -f Makefile.nmake
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..