aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython/Makefile.nmake
diff options
context:
space:
mode:
Diffstat (limited to 'epan/wspython/Makefile.nmake')
-rw-r--r--epan/wspython/Makefile.nmake29
1 files changed, 0 insertions, 29 deletions
diff --git a/epan/wspython/Makefile.nmake b/epan/wspython/Makefile.nmake
deleted file mode 100644
index 94be104939..0000000000
--- a/epan/wspython/Makefile.nmake
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-
-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) -DWS_BUILD_DLL
-
-.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 -build \
- $(LIBWSPYTHON_OBJECTS)