aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-10-28 00:52:28 +0000
committerGuy Harris <guy@alum.mit.edu>2001-10-28 00:52:28 +0000
commitfacce7278a018b913a9a6cfa284b57cb5de7eabd (patch)
tree7c20cd2c3815614f122019699f65124524b2cc66 /epan
parentad9f7b9566e84291bbb25a643989cc1a792866bf (diff)
"ftypes" and "dfilter" should depend on "config.h", so that if it
doesn't exist, or is out of date with respect to "config.h.win32", it's remade - stuff in "ftypes" and "dfilter" includes "config.h", and it should get the "config.h" in "epan". svn path=/trunk/; revision=4091
Diffstat (limited to 'epan')
-rw-r--r--epan/Makefile.nmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/Makefile.nmake b/epan/Makefile.nmake
index 01fa7d7b65..73ca861b77 100644
--- a/epan/Makefile.nmake
+++ b/epan/Makefile.nmake
@@ -63,12 +63,12 @@ clean:
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
-ftypes::
+ftypes:: config.h
cd ftypes
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..
-dfilter::
+dfilter:: config.h
cd dfilter
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
cd ..