Added the wspython Makefile.nmake from bug 3500 to satisfy the

Ubuntu buildbot.

svn path=/trunk/; revision=28570
This commit is contained in:
Stig Bjørlykke 2009-06-01 18:09:07 +00:00
parent 97f65cd644
commit 95f5427287
1 changed files with 32 additions and 0 deletions

View File

@ -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)