aboutsummaryrefslogtreecommitdiffstats
path: root/tools
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
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')
-rw-r--r--tools/Makefile.am3
-rwxr-xr-xtools/Makefile.nmake13
-rw-r--r--tools/lemon/Makefile.am4
-rw-r--r--tools/lemon/Makefile.nmake9
4 files changed, 27 insertions, 2 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index be70ac866e..e23a800eaf 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -1 +1,4 @@
SUBDIRS = lemon
+
+EXTRA_DIST = \
+ Makefile.nmake
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 ..
diff --git a/tools/lemon/Makefile.am b/tools/lemon/Makefile.am
index 1f811d5e7b..e3a8b78a71 100644
--- a/tools/lemon/Makefile.am
+++ b/tools/lemon/Makefile.am
@@ -1,6 +1,6 @@
# Makefile.am
#
-# $Id: Makefile.am,v 1.1 2001/02/01 20:21:24 gram Exp $
+# $Id: Makefile.am,v 1.2 2001/02/02 04:03:43 gram Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@zing.org>
@@ -34,11 +34,11 @@ CLEANFILES = \
lemon_SOURCES = \
lemon.c
-# Makefile.nmake
EXTRA_DIST = \
lemon.html \
lemonflex-head.inc \
lemonflex-tail.inc \
lempar.c \
+ Makefile.nmake \
README
diff --git a/tools/lemon/Makefile.nmake b/tools/lemon/Makefile.nmake
new file mode 100644
index 0000000000..db862fe396
--- /dev/null
+++ b/tools/lemon/Makefile.nmake
@@ -0,0 +1,9 @@
+
+all : lemon.exe
+
+OBJECTS = lemon.obj
+
+lemon.exe : $(OBJECTS)
+
+clean:
+ rm $(OBJECTS) lemon.exe