aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.nmake
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 /plugins/Makefile.nmake
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 'plugins/Makefile.nmake')
-rw-r--r--plugins/Makefile.nmake10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Makefile.nmake b/plugins/Makefile.nmake
index d10dfd17da..dcc25ab063 100644
--- a/plugins/Makefile.nmake
+++ b/plugins/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.8 2000/11/12 11:08:45 guy Exp $
+# $Id: Makefile.nmake,v 1.9 2001/03/06 13:08:12 gram Exp $
#
include ..\config.nmake
@@ -17,18 +17,18 @@ all: plugin_api.obj gryphon mgcp
gryphon::
cd gryphon
- nmake -f Makefile.nmake
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
mgcp::
cd mgcp
- nmake -f Makefile.nmake
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
clean:
rm -f plugin_api.obj
cd gryphon
- nmake -f Makefile.nmake clean
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../mgcp
- nmake -f Makefile.nmake clean
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..