aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes/Makefile.nmake
diff options
context:
space:
mode:
Diffstat (limited to 'epan/ftypes/Makefile.nmake')
-rw-r--r--epan/ftypes/Makefile.nmake32
1 files changed, 0 insertions, 32 deletions
diff --git a/epan/ftypes/Makefile.nmake b/epan/ftypes/Makefile.nmake
deleted file mode 100644
index 1acff2ef92..0000000000
--- a/epan/ftypes/Makefile.nmake
+++ /dev/null
@@ -1,32 +0,0 @@
-## Makefile for building wireshark.exe with Microsoft C and nmake
-## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
-#
-
-include ..\..\config.nmake
-
-include Makefile.common
-
-############### no need to modify below this line #########
-
-CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
- /I. /I.. /I../.. $(GLIB_CFLAGS) \
- /I$(PCAP_DIR)\include -DWS_BUILD_DLL
-
-.c.obj::
- $(CC) $(CFLAGS) -Fd.\ -c $<
-
-OBJECTS=$(NONGENERATED_C_FILES:.c=.obj)
-
-ftypes.lib : $(OBJECTS)
- link /lib /out:ftypes.lib $(OBJECTS)
-
-clean:
- rm -f $(OBJECTS) ftypes.lib *.nativecodeanalysis.xml *.pdb *.sbr
-
-distclean: clean
-
-maintainer-clean: distclean
-
-checkapi:
- $(PERL) ../../tools/checkAPIs.pl -g termoutput -build \
- $(NONGENERATED_C_FILES)