aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2001-03-06 13:08:13 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2001-03-06 13:08:13 +0000
commit4b6b3da4e7d0c3543d4d0db96a0d56f7f2049fe2 (patch)
treea366efd3ed83b2e9e6f56ebfe30c26e2aaa2d258 /tools
parentd21e83b98b488341684a43d7bd904c8c1768a760 (diff)
Add some win32-specific targets in .cvsignore's.
Replace 'nmake' with $(MAKE) /$(MAKEFLAGS), from Mike Frisch. svn path=/trunk/; revision=3108
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 ..