diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-12-12 01:29:13 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-12-12 01:29:13 +0000 |
commit | 39362af8144a3c9645cf35907c8d59d795019e79 (patch) | |
tree | acabd038f5dae5885a9319a919bc0bbe140d62d7 /gtk | |
parent | c5b1e310e332942052e44b40263f2621d9c7a6a3 (diff) | |
download | wireshark-39362af8144a3c9645cf35907c8d59d795019e79.tar.gz wireshark-39362af8144a3c9645cf35907c8d59d795019e79.tar.bz2 wireshark-39362af8144a3c9645cf35907c8d59d795019e79.zip |
From Motonori Shindo:
fix a bogus batch mode inference rule of make, so that
"vc60.pdb" files are created in the proper directory;
delete ".pdb" files in a "nmake -f Makefile.nmake clean";
include the text2pcap and mergecap ".pdb" files in the Windows
binary distribution.
svn path=/trunk/; revision=4385
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/Makefile.nmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/Makefile.nmake b/gtk/Makefile.nmake index 6d3d3ef9de..54d5f03480 100644 --- a/gtk/Makefile.nmake +++ b/gtk/Makefile.nmake @@ -11,8 +11,8 @@ CFLAGS=-DHAVE_CONFIG_H /I.. /I../epan /I../wiretap \ CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL -{$S}.c{$O}.obj:: - $(CC) $(CVARSDLL) $(CFLAGS) -Fd$O\ -c $< +.c.obj:: + $(CC) $(CVARSDLL) $(CFLAGS) -Fd.\ -c $< # gtkclist.obj is not in here because it is gtk+-1.2 code, # while the DLL for GTK+ on windows is gtk+-1.3, and there's @@ -57,4 +57,4 @@ libui.lib : ..\config.h $(OBJECTS) clean: - rm -f $(OBJECTS) libui.lib + rm -f $(OBJECTS) libui.lib $(PDB_FILE) |