aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-06-01 18:09:07 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-06-01 18:09:07 +0000
commit95f5427287ff274f90bd08bf4c39baf6aa294c0a (patch)
tree74751517918cf76165e8c27b4d0ccc1a287d193e /epan/wspython
parent97f65cd644c255c2b93e768dc06cee3af89dd1e3 (diff)
Added the wspython Makefile.nmake from bug 3500 to satisfy the
Ubuntu buildbot. svn path=/trunk/; revision=28570
Diffstat (limited to 'epan/wspython')
-rw-r--r--epan/wspython/Makefile.nmake32
1 files changed, 32 insertions, 0 deletions
diff --git a/epan/wspython/Makefile.nmake b/epan/wspython/Makefile.nmake
new file mode 100644
index 0000000000..bebe50ccf6
--- /dev/null
+++ b/epan/wspython/Makefile.nmake
@@ -0,0 +1,32 @@
+#
+# $Id$
+#
+
+include ..\..\config.nmake
+include Makefile.common
+
+############### no need to modify below this line #########
+
+CFLAGS=-WX -DHAVE_CONFIG_H /I. /I.. /I../.. $(GLIB_CFLAGS) $(PYTHON_CFLAGS) \
+ -D_U_="" $(LOCAL_CFLAGS)
+
+CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL
+
+.c.obj::
+ $(CC) $(CVARSDLL) $(CFLAGS) -Fd.\ -c $<
+
+LIBWSPYTHON_OBJECTS = $(LIBWSPYTHON_SRC:.c=.obj)
+
+wspython.lib: $(LIBWSPYTHON_OBJECTS)
+ link /lib /out:wspython.lib $(LIBWSPYTHON_OBJECTS)
+
+clean:
+ rm -f $(LIBWSPYTHON_OBJECTS) wspython.lib *.pdb
+
+distclean: clean
+
+maintainer-clean: distclean
+
+checkapi:
+ $(PERL) ../../tools/checkAPIs.pl -g termoutput \
+ $(LIBWSPYTHON_OBJECTS)