aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython/Makefile.nmake
blob: a50ec26b3883ca0eea53c0f5fa9ea66ee9e3d9b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# $Id$
#

include ..\..\config.nmake
include Makefile.common

############### no need to modify below this line #########

CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
	/I. /I.. /I../.. $(GLIB_CFLAGS) \
	$(PYTHON_CFLAGS)

.c.obj::
   $(CC) $(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 *.sbr

distclean: clean

maintainer-clean: distclean

checkapi:
	$(PERL) ../../tools/checkAPIs.pl -g termoutput \
	$(LIBWSPYTHON_OBJECTS)