aboutsummaryrefslogtreecommitdiffstats
path: root/epan/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-10-17 09:25:37 +0000
committerGuy Harris <guy@alum.mit.edu>2000-10-17 09:25:37 +0000
commit2030dba6939cd34c3857b0c8a92b49f231ce3e8e (patch)
tree7f48531e8c28d97b9f37826f671ea04b37a37116 /epan/Makefile.nmake
parent9760c91217a3e84fa5c40a6fb64871a578f7d0e0 (diff)
Make the top-level "config.h.win32" more closely resemble the top-level
"config.h", and update it to include stuff added to "config.h" and remove stuff removed from "config.h". Give libethereal a "config.h.win32" and make its "Makefile.nmake" file copy it to "config.h". svn path=/trunk/; revision=2504
Diffstat (limited to 'epan/Makefile.nmake')
-rw-r--r--epan/Makefile.nmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/Makefile.nmake b/epan/Makefile.nmake
index 3b59aefc02..4ed7939fcf 100644
--- a/epan/Makefile.nmake
+++ b/epan/Makefile.nmake
@@ -35,10 +35,10 @@ OBJECTS=conversation.obj \
tvbuff.obj \
# For use when making ethereal.dll
-#ethereal.dll ethereal.lib : ..\config.h $(OBJECTS)
+#ethereal.dll ethereal.lib : config.h $(OBJECTS)
# link /DLL /out:ethereal.dll $(OBJECTS) $(libethereal_LIBS)
-ethereal.lib : ..\config.h $(OBJECTS)
+ethereal.lib : config.h $(OBJECTS)
lib /out:ethereal.lib $(OBJECTS)
dfilter-scanner.obj : dfilter-scanner.c dfilter-grammar.h
@@ -49,8 +49,8 @@ dfilter-scanner.c : dfilter-scanner.l
dfilter-grammar.c dfilter-grammar.h : dfilter-grammar.y
$(YACC) $(YACC_OPTS) -d -p dfilter_ dfilter-grammar.y -o dfilter-grammar.c
-..\config.h : ..\config.h.win32
- copy ..\config.h.win32 ..\config.h
+config.h : config.h.win32
+ copy config.h.win32 $@
clean:
rm -f $(OBJECTS) ethereal.lib