aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-12 01:29:13 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-12 01:29:13 +0000
commit39362af8144a3c9645cf35907c8d59d795019e79 (patch)
treeacabd038f5dae5885a9319a919bc0bbe140d62d7 /epan/ftypes/Makefile.nmake
parentc5b1e310e332942052e44b40263f2621d9c7a6a3 (diff)
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 'epan/ftypes/Makefile.nmake')
-rw-r--r--epan/ftypes/Makefile.nmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/ftypes/Makefile.nmake b/epan/ftypes/Makefile.nmake
index 37490b44c6..a802286070 100644
--- a/epan/ftypes/Makefile.nmake
+++ b/epan/ftypes/Makefile.nmake
@@ -9,8 +9,8 @@ CFLAGS=-DHAVE_CONFIG_H /I. /I.. /I../.. \
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 $<
OBJECTS = \
@@ -30,5 +30,5 @@ ftypes.lib : $(OBJECTS)
clean:
- rm -f $(OBJECTS) ftypes.lib
+ rm -f $(OBJECTS) ftypes.lib $(PDB_FILE)