Integrate Ed Meaney's <emeaney@altiga.com> changes for using libpcap
[obnox/wireshark/wip.git] / gtk / Makefile.nmake
1 include ..\config.nmake
2
3 ############### no need to modify below this line #########
4
5 CFLAGS=/DHAVE_CONFIG_H /I.. /I../wiretap \
6         /I$(GLIB_DIR) /I$(GTK_DIR) /I$(GLIB_DIR)/gmodule \
7         /I$(GTK_DIR)\gdk /I$(GTK_DIR)\gdk\win32 \
8         /I$(PCAP_DIR)\include $(LOCAL_CFLAGS)
9
10 # gtkclist.obj is not in here because it is gtk+-1.2 code,
11 # while the DLL for GTK+ on windows is gtk+-1.3, and there's
12 # some functions that have disappeared in gtk+-1.3. I might
13 # get around to #ifdef'ing them out in our gtkclist.c.
14 OBJECTS=capture_dlg.obj \
15         column_prefs.obj \
16         display_opts.obj \
17         file_dlg.obj \
18         filter_prefs.obj \
19         find_dlg.obj \
20         goto_dlg.obj \
21         gui_prefs.obj \
22         main.obj        \
23         menu.obj        \
24         plugins_dlg.obj \
25         prefs_dlg.obj \
26         print_dlg.obj \
27         print_prefs.obj  \
28         proto_draw.obj \
29         simple_dialog.obj \
30         stream_prefs.obj \
31         summary_dlg.obj \
32         ui_util.obj
33
34
35 libui.lib       : ..\config.h $(OBJECTS)
36         lib /out:libui.lib $(OBJECTS)   
37
38
39 ..\config.h     : ..\config.h.win32
40         copy ..\config.h.win32 ..\config.h