"Decode As" dialog, from David Hampton.
[obnox/wireshark/wip.git] / gtk / Makefile.nmake
1 include ..\config.nmake
2
3 ############### no need to modify below this line #########
4
5 CFLAGS=/MT /DHAVE_CONFIG_H /I.. /I../epan /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 {$S}.c{$O}.obj::
11    $(CC) $(CFLAGS) -Fd$O\ -c $<
12
13 # gtkclist.obj is not in here because it is gtk+-1.2 code,
14 # while the DLL for GTK+ on windows is gtk+-1.3, and there's
15 # some functions that have disappeared in gtk+-1.3. I might
16 # get around to #ifdef'ing them out in our gtkclist.c.
17 OBJECTS=capture_dlg.obj \
18         color_dlg.obj    \
19         colors.obj       \
20         color_utils.obj  \
21         column_prefs.obj \
22         decode_as_dlg.obj \
23         dfilter_expr_dlg.obj \
24         display_opts.obj \
25         dlg_utils.obj   \
26         file_dlg.obj \
27         filter_prefs.obj \
28         find_dlg.obj \
29         follow_dlg.obj \
30         goto_dlg.obj \
31         gui_prefs.obj \
32         help_dlg.obj \
33         main.obj        \
34         menu.obj        \
35         packet_win.obj  \
36         plugins_dlg.obj \
37         prefs_dlg.obj \
38         print_dlg.obj \
39         print_prefs.obj  \
40         progress_dlg.obj \
41         proto_dlg.obj \
42         proto_draw.obj \
43         simple_dialog.obj \
44         stream_prefs.obj \
45         summary_dlg.obj \
46         ui_util.obj
47
48
49 libui.lib       : ..\config.h $(OBJECTS)
50         lib /out:libui.lib $(OBJECTS)   
51
52
53 ..\config.h     : ..\config.h.win32
54         copy ..\config.h.win32 ..\config.h
55
56 clean:
57         rm -f $(OBJECTS) libui.lib