aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/irda/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-18 19:07:14 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-18 19:07:14 +0000
commitb8299f0b98b7ff518aceb62f998a174936cf4a50 (patch)
tree609bd927b0dcbece1639f340a78fe2d058e1fa1d /plugins/irda/Makefile.nmake
parent7993e1aa2e2c20e7b058dbb856195dd5a24ecf56 (diff)
From Jan Kiszka: IrDA support.
svn path=/trunk/; revision=9345
Diffstat (limited to 'plugins/irda/Makefile.nmake')
-rw-r--r--plugins/irda/Makefile.nmake21
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/irda/Makefile.nmake b/plugins/irda/Makefile.nmake
new file mode 100644
index 0000000000..297a48194c
--- /dev/null
+++ b/plugins/irda/Makefile.nmake
@@ -0,0 +1,21 @@
+#
+# $Id: Makefile.nmake,v 1.1 2003/12/18 19:07: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-irda.obj packet-ircomm.obj
+
+irda.dll irda.exp irda.lib : $(OBJECTS) ..\plugin_api.obj
+ link -dll /out:irda.dll $(OBJECTS) ..\plugin_api.obj \
+ $(GLIB_LIBS)
+
+clean:
+ rm -f $(OBJECTS) irda.dll irda.exp irda.lib $(PDB_FILE)
+
+distclean: clean