diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-12-19 19:16:12 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-12-19 19:16:12 +0000 |
commit | 1e8ca8af4d4034807bb749090f669cd636b7d440 (patch) | |
tree | a25e961af152ea525eac6dabcd04db8b6de7f05d /Makefile.nmake | |
parent | 887799e01a4a87fee62ef25fd548ba9050cac902 (diff) | |
download | wireshark-1e8ca8af4d4034807bb749090f669cd636b7d440.tar.gz wireshark-1e8ca8af4d4034807bb749090f669cd636b7d440.tar.bz2 wireshark-1e8ca8af4d4034807bb749090f669cd636b7d440.zip |
From Motonori Shindo: don't put the PDB files into the release, as
they're not built and the executables already contain debugging
information, and update the README.win32 file appropriately and add
Text2Pcap and Mergecap to it.
svn path=/trunk/; revision=4425
Diffstat (limited to 'Makefile.nmake')
-rw-r--r-- | Makefile.nmake | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile.nmake b/Makefile.nmake index 8bec8b9ed2..1c43d83919 100644 --- a/Makefile.nmake +++ b/Makefile.nmake @@ -1,7 +1,7 @@ ## Makefile for building ethereal.exe with Microsoft C and nmake ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake # -# $Id: Makefile.nmake,v 1.155 2001/12/16 22:30:09 guy Exp $ +# $Id: Makefile.nmake,v 1.156 2001/12/19 19:16:10 guy Exp $ include config.nmake include <win32.mak> @@ -330,10 +330,6 @@ dftest_LIBS= epan\ethereal.lib \ EXECUTABLES=ethereal.exe tethereal.exe editcap.exe mergecap.exe text2pcap.exe -EXECUTABLES_PDBS = $(EXECUTABLES:.exe=.pdb) - -PDBS = $(EXECUTABLES_PDBS) $(PDB_FILE) - RESOURCES=image\ethereal.res image\tethereal.res image\editcap.res image\mergecap.res image\text2pcap.res all: tools wiretap gtk epan image $(EXECUTABLES) $(RESOURCES) @@ -406,7 +402,7 @@ text2pcap-scanner.c : text2pcap-scanner.l $(LEX) -otext2pcap-scanner.c text2pcap-scanner.l clean: - rm -f $(ethereal_OBJECTS) $(EXTRA_OBJECTS) $(EXECUTABLES) $(PDBS) \ + rm -f $(ethereal_OBJECTS) $(EXTRA_OBJECTS) $(EXECUTABLES) $(PDB_FILE) \ tethereal.obj editcap.obj mergecap.obj text2pcap.obj \ text2pcap-scanner.obj text2pcap-scanner.c register.c \ rdps.obj rdps.pdb config.h ps.c packet-ncp2222.c register.c |