Jeff Foster's changes, with my additions, to allow the user to pop up a
[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         colors.obj       \
16         color_dlg.obj    \
17         column_prefs.obj \
18         display_opts.obj \
19         file_dlg.obj \
20         filter_prefs.obj \
21         find_dlg.obj \
22         goto_dlg.obj \
23         gui_prefs.obj \
24         main.obj        \
25         menu.obj        \
26         packet_win.obj  \
27         plugins_dlg.obj \
28         prefs_dlg.obj \
29         print_dlg.obj \
30         print_prefs.obj  \
31         proto_draw.obj \
32         simple_dialog.obj \
33         stream_prefs.obj \
34         summary_dlg.obj \
35         ui_util.obj
36
37
38 libui.lib       : ..\config.h $(OBJECTS)
39         lib /out:libui.lib $(OBJECTS)   
40
41
42 ..\config.h     : ..\config.h.win32
43         copy ..\config.h.win32 ..\config.h