aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-01-16 23:24:15 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-01-16 23:24:15 +0000
commit463c0888755a038e16d02dc204dccf33ddc31d6d (patch)
tree217c4c54c05b9b7790cad2007ad2183db81be897 /Makefile.nmake
parenta13bc52415b1f33f0236bac9092743c29a8ae753 (diff)
Compile text2pcap.c,mergecap.c,capinfos.c,editcap.c, & version_info.c with -WX;
(Treat warnings as errors); Done by simplifing the dependency line for the objects so that the default .c.obj inference rule is used. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35564 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake15
1 files changed, 1 insertions, 14 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index efb9a54cc8..3281dd809c 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -436,21 +436,8 @@ text2pcap-scanner.obj : text2pcap-scanner.c
# The following targets will rebuild their respective objs
# if and when svnversion.h should change.
#
+text2pcap.obj mergecap.obj capinfos.obj editcap.obj version_info.obj: svnversion.h
-text2pcap.obj : $*.c svnversion.h
- $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
-
-mergecap.obj : $*.c svnversion.h
- $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
-
-capinfos.obj : $*.c svnversion.h
- $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
-
-editcap.obj : $*.c svnversion.h
- $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
-
-version_info.obj : $*.c svnversion.h
- $(CC) $(CVARSDLL) $(GENERATED_CFLAGS) -Fd.\ -c $*.c
clean-local: clean-deps
rm -f $(wireshark_OBJECTS) $(tshark_OBJECTS) $(dumpcap_OBJECTS) $(rawshark_OBJECTS) \