wireshark/epan/ftypes/Makefile.nmake
Guy Harris 39362af814 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
2001-12-12 01:29:13 +00:00

35 lines
653 B
Makefile

include ..\..\config.nmake
############### no need to modify below this line #########
CFLAGS=-DHAVE_CONFIG_H /I. /I.. /I../.. \
/I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \
/I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
/I$(PCAP_DIR)\include $(LOCAL_CFLAGS)
CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL
.c.obj::
$(CC) $(CVARSDLL) $(CFLAGS) -Fd.\ -c $<
OBJECTS = \
ftypes.obj \
ftype-bytes.obj \
ftype-double.obj \
ftype-integer.obj \
ftype-ipv4.obj \
ftype-none.obj \
ftype-string.obj \
ftype-time.obj \
ftype-tvbuff.obj
ftypes.lib : $(OBJECTS)
lib /out:ftypes.lib $(OBJECTS)
clean:
rm -f $(OBJECTS) ftypes.lib $(PDB_FILE)