aboutsummaryrefslogtreecommitdiffstats
path: root/ui/win32/Makefile.nmake
blob: ecd6a1d6bfafb722223ed2d47962a98b6072a5b4 (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
32
33
34
35
36
37
38
39
40
## 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../.. /I../../wiretap $(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 *.pdb *.sbr

distclean: clean

maintainer-clean: distclean

checkapi:
	$(PERL) ../../tools/checkAPIs.pl -g deprecated-gtk -build \
	$(WIRESHARK_WIN32_SRC)