diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-04-04 08:22:13 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-04-04 08:22:13 +0000 |
commit | e59a0d5260523aa2eeafe63a9d8686aea615c048 (patch) | |
tree | bc9a6faffec2aaeb2aa9f42f5548bfd1138d6d3c /wiretap | |
parent | c2b1feea055c65f002bd86d4f4dba6b48453e942 (diff) | |
download | wireshark-e59a0d5260523aa2eeafe63a9d8686aea615c048.tar.gz wireshark-e59a0d5260523aa2eeafe63a9d8686aea615c048.tar.bz2 wireshark-e59a0d5260523aa2eeafe63a9d8686aea615c048.zip |
The Win32 port of libpcap requires that programs with which it's built
be built as multi-threaded programs; add "/MT" to the list of compiler
flags.
Add "clean" rules in subdirectories, and run subdirectory "nmake -f
Makefile.nmake clean" when "nmake -f Makefile.nmake clean" is done in
the top-level directory, so that "nmake -f Makefile.nmake clean" cleans
everything up.
svn path=/trunk/; revision=1791
Diffstat (limited to 'wiretap')
-rw-r--r-- | wiretap/Makefile.nmake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wiretap/Makefile.nmake b/wiretap/Makefile.nmake index 539e5db8d6..9d6dc81a8c 100644 --- a/wiretap/Makefile.nmake +++ b/wiretap/Makefile.nmake @@ -3,7 +3,7 @@ include ..\config.nmake ############### no need to modify below this line ######### -CFLAGS=/DHAVE_CONFIG_H /I$(GLIB_DIR) $(LOCAL_CFLAGS) +CFLAGS=/MT /DHAVE_CONFIG_H /I$(GLIB_DIR) $(LOCAL_CFLAGS) OBJECTS=ascend-grammar.obj \ ascend-scanner.obj \ @@ -39,3 +39,5 @@ ascend-scanner.c : ascend-scanner.l config.h : config.h.win32 copy config.h.win32 $@ +clean : + rm -f $(OBJECTS) libwtap.lib |