aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/rtnet/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-06-11 09:17:03 +0000
committerGuy Harris <guy@alum.mit.edu>2003-06-11 09:17:03 +0000
commitf54e01516a88b4cf3914325233363b4d38bebdb6 (patch)
tree9719387d3b97fb8d49a82848cf742d1937b5dfc9 /plugins/rtnet/Makefile.nmake
parentf70cc6b9f155b000f815d46dbbf39296e787d498 (diff)
From Erwin Rol: RTNET/TDMA support.
svn path=/trunk/; revision=7839
Diffstat (limited to 'plugins/rtnet/Makefile.nmake')
-rw-r--r--plugins/rtnet/Makefile.nmake21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/rtnet/Makefile.nmake b/plugins/rtnet/Makefile.nmake
new file mode 100644
index 0000000000..6947613477
--- /dev/null
+++ b/plugins/rtnet/Makefile.nmake
@@ -0,0 +1,21 @@
+#
+# $Id: Makefile.nmake,v 1.1 2003/06/11 09:17:03 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 -D_U_="" $(LOCAL_CFLAGS)
+
+OBJECTS=packet-artnet.obj
+
+artnet.dll artnet.exp artnet.lib : packet-artnet.obj ..\plugin_api.obj
+ link -dll /out:artnet.dll packet-artnet.obj ..\plugin_api.obj \
+ $(GLIB_DIR)\glib-$(GLIB_VERSION).lib
+
+clean:
+ rm -f $(OBJECTS) artnet.dll artnet.exp artnet.lib $(PDB_FILE)