aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.nmake
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2001-02-02 04:03:43 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2001-02-02 04:03:43 +0000
commit95e09f5ac390bd671e59a6e2bcc7f62bfcf8c8ec (patch)
tree062fdb99cae555ef23486b1b3a003782a398d7d2 /tools/Makefile.nmake
parent9627904c2a7f473ebe9d091d27fe482c05acc95f (diff)
Add Makefile.nmake files for new subdirs.
Add them to EXTRA_DIST in corresponding Makefile.am's so that they get packaged with the distribution. svn path=/trunk/; revision=2979
Diffstat (limited to 'tools/Makefile.nmake')
-rwxr-xr-xtools/Makefile.nmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/Makefile.nmake b/tools/Makefile.nmake
new file mode 100755
index 0000000000..ef1885c948
--- /dev/null
+++ b/tools/Makefile.nmake
@@ -0,0 +1,13 @@
+
+all: lemon
+
+
+clean:
+ cd lemon
+ nmake -f Makefile.nmake clean
+
+
+lemon::
+ cd lemon
+ nmake -f Makefile.nmake
+ cd ..