wireshark/epan/ftypes/Makefile.nmake
Olivier Biot ec776da55a Internal PCRE field type for efficient RE parsing in dfilters.
svn path=/trunk/; revision=9225
2003-12-09 23:15:35 +00:00

40 lines
808 B
Makefile

## Makefile for building ethereal.exe with Microsoft C and nmake
## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
#
# $Id: Makefile.nmake,v 1.8 2003/12/09 23:15:35 obiot Exp $
include ..\..\config.nmake
############### no need to modify below this line #########
CFLAGS=-DHAVE_CONFIG_H /I. /I.. /I../.. $(GTK_CFLAGS) \
$(PCRE_CFLAGS) /I$(PCAP_DIR)\include -D_U_="" $(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-pcre.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)
distclean: clean