aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop/Makefile.nmake
blob: 12d6ed168671765fe635eac335a88b8e975dbe15 (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
29
#
# $Id: Makefile.nmake,v 1.5 2002/01/21 07:37:46 guy Exp $
#

include ..\..\config.nmake

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

CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap \
	/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)

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_DIR)\glib-$(GLIB_VERSION).lib

coseventcomm.dll coseventcomm.exp coseventcomm.lib : packet-coseventcomm.obj ..\plugin_api.obj
	link -dll /out:coseventcomm.dll packet-coseventcomm.obj ..\plugin_api.obj \
	$(GLIB_DIR)\glib-$(GLIB_VERSION).lib


clean:
	rm -f $(OBJECTS) cosnaming.dll cosnaming.exp cosnaming.lib \
	coseventcomm.dll coseventcomm.exp coseventcomm.lib $(PDB_FILE)