aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/rdm/Makefile.nmake
blob: 8f6276fcc2434d49d30cb036e1d92ba1ae91b2f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# $Id$
#

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-rdm.obj 

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

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

distclean: clean