summaryrefslogtreecommitdiff
path: root/ui/win32
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-06-08 15:57:00 +0200
committerMichael Mann <mmann78@netscape.net>2016-06-15 19:21:57 +0000
commit6baa1b544c84a766d9f9d356e9940eccaf0a128f (patch)
treefc5431419180335703edcbf01e6b260d2c0dcbfd /ui/win32
parent88bd50c592b0d24a12dd178ae2858444400a012f (diff)
downloadwireshark-6baa1b544c84a766d9f9d356e9940eccaf0a128f.tar.gz
Remove Nmake build system
Change-Id: I3bd474f3cda9667dec66426b5729449953df3e61 Reviewed-on: https://code.wireshark.org/review/15777 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Jörg Mayer <jmayer@loplof.de> Reviewed-by: Balint Reczey <balint@balintreczey.hu>
Diffstat (limited to 'ui/win32')
-rw-r--r--ui/win32/Makefile.nmake40
1 files changed, 0 insertions, 40 deletions
diff --git a/ui/win32/Makefile.nmake b/ui/win32/Makefile.nmake
deleted file mode 100644
index 136d7efea0..0000000000
--- a/ui/win32/Makefile.nmake
+++ /dev/null
@@ -1,40 +0,0 @@
-## Makefile for building wireshark.exe with Microsoft C and nmake
-## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
-#
-
-include ..\..\config.nmake
-include ..\..\Makefile.nmake.inc
-
-############### no need to modify below this line #########
-
-CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
- /Zm800 \
- /I../.. $(GTK_CFLAGS) $(GNUTLS_CFLAGS) \
- /I$(PCAP_DIR)\WPCAP\LIBPCAP /I$(PCAP_DIR)\WPCAP\LIBPCAP\bpf \
- /I$(PCAP_DIR)\WPCAP\LIBPCAP\lbl \
- /I$(PCAP_DIR)\include $(AIRPCAP_CFLAGS)
-
-.c.obj::
- $(CC) $(CFLAGS) $(WSUG_CFLAGS) -Fd.\ -c $<
-
-# if you add files here, be sure to include them also in Makefile.am EXTRA_DIST in the main Wireshark directory
-WIRESHARK_WIN32_SRC = \
- console_win32.c \
- file_dlg_win32.c \
- print_win32.c \
-
-WIRESHARK_WIN32_OBJECTS = $(WIRESHARK_WIN32_SRC:.c=.obj)
-
-libgtkui_win32.lib : ..\..\config.h $(WIRESHARK_WIN32_OBJECTS)
- link /lib /out:libgtkui_win32.lib $(WIRESHARK_WIN32_OBJECTS) winmm.lib
-
-clean:
- rm -f $(WIRESHARK_WIN32_OBJECTS) libgtkui_win32.lib *.nativecodeanalysis.xml *.pdb *.sbr
-
-distclean: clean
-
-maintainer-clean: distclean
-
-checkapi:
- $(PERL) ../../tools/checkAPIs.pl -g deprecated-gtk -build \
- $(WIRESHARK_WIN32_SRC)