From 95f5427287ff274f90bd08bf4c39baf6aa294c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig=20Bj=C3=B8rlykke?= Date: Mon, 1 Jun 2009 18:09:07 +0000 Subject: Added the wspython Makefile.nmake from bug 3500 to satisfy the Ubuntu buildbot. svn path=/trunk/; revision=28570 --- epan/wspython/Makefile.nmake | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 epan/wspython/Makefile.nmake (limited to 'epan/wspython') 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) -- cgit v1.2.3