aboutsummaryrefslogtreecommitdiffstats
path: root/epan
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 /epan
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 'epan')
-rw-r--r--epan/.cvsignore2
-rw-r--r--epan/Makefile.nmake8
-rw-r--r--epan/dfilter/.cvsignore2
-rw-r--r--epan/ftypes/.cvsignore2
4 files changed, 10 insertions, 4 deletions
diff --git a/epan/.cvsignore b/epan/.cvsignore
index 785ce1d362..09d7682a29 100644
--- a/epan/.cvsignore
+++ b/epan/.cvsignore
@@ -14,3 +14,5 @@ aclocal.m4
configure
stamp-h
config.log
+*.lib
+*.obj
diff --git a/epan/Makefile.nmake b/epan/Makefile.nmake
index 2e22c522a3..3ebd008538 100644
--- a/epan/Makefile.nmake
+++ b/epan/Makefile.nmake
@@ -48,17 +48,17 @@ config.h : config.h.win32
clean:
rm -f $(OBJECTS) ethereal.lib
cd ftypes
- nmake -f Makefile.nmake clean
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ../dfilter
- nmake -f Makefile.nmake clean
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
ftypes::
cd ftypes
- nmake -f Makefile.nmake
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
dfilter::
cd dfilter
- nmake -f Makefile.nmake
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
diff --git a/epan/dfilter/.cvsignore b/epan/dfilter/.cvsignore
index 8881f6cef9..d6d59a67e2 100644
--- a/epan/dfilter/.cvsignore
+++ b/epan/dfilter/.cvsignore
@@ -6,3 +6,5 @@ grammar.h
grammar.out
Makefile.in
grammar.c
+*.lib
+*.obj
diff --git a/epan/ftypes/.cvsignore b/epan/ftypes/.cvsignore
index 601c4fbff4..7c76e5ea41 100644
--- a/epan/ftypes/.cvsignore
+++ b/epan/ftypes/.cvsignore
@@ -2,3 +2,5 @@
.deps
Makefile
Makefile.in
+*.lib
+*.obj