aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/lwres/Makefile.nmake
blob: 8cd491fc2d823c919b512624139f748933ea4a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# $Id: Makefile.nmake,v 1.4 2003/11/06 09:05:12 guy Exp $
#

include ..\..\config.nmake

############### no need to modify below this line #########

CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap $(GLIB_CFLAGS) \
	/I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)

OBJECTS=packet-lwres.obj 

lwres.dll lwres.exp lwres.lib : $(OBJECTS) ..\plugin_api.obj
	link -dll /out:lwres.dll $(OBJECTS) ..\plugin_api.obj \
	$(GLIB_LIBS)

clean:
	rm -f $(OBJECTS) lwres.dll lwres.exp lwres.lib $(PDB_FILE)

distclean: clean