blob: eb65154b45c2397c8c408cb84ed3f49f8062a127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#
# $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-cosnaming.obj packet-coseventcomm.obj
all : cosnaming.dll coseventcomm.dll
cosnaming.dll cosnaming.exp cosnaming.lib : packet-cosnaming.obj ..\plugin_api.obj
link -dll /out:cosnaming.dll packet-cosnaming.obj ..\plugin_api.obj \
$(GLIB_LIBS)
coseventcomm.dll coseventcomm.exp coseventcomm.lib : packet-coseventcomm.obj ..\plugin_api.obj
link -dll /out:coseventcomm.dll packet-coseventcomm.obj ..\plugin_api.obj \
$(GLIB_LIBS)
clean:
rm -f $(OBJECTS) cosnaming.dll cosnaming.exp cosnaming.lib \
coseventcomm.dll coseventcomm.exp coseventcomm.lib $(PDB_FILE)
distclean: clean
|