Change version to 0.8.10
[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../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         colors.obj       \
19         color_dlg.obj    \
20         column_prefs.obj \
21         display_opts.obj \
22         dlg_utils.obj   \
23         file_dlg.obj \
24         filter_prefs.obj \
25         find_dlg.obj \
26         goto_dlg.obj \
27         gui_prefs.obj \
28         main.obj        \
29         menu.obj        \
30         packet_win.obj  \
31         plugins_dlg.obj \
32         prefs_dlg.obj \
33         print_dlg.obj \
34         print_prefs.obj  \
35         progress_dlg.obj \
36         proto_draw.obj \
37         simple_dialog.obj \
38         stream_prefs.obj \
39         summary_dlg.obj \
40         ui_util.obj
41
42
43 libui.lib       : ..\config.h $(OBJECTS)
44         lib /out:libui.lib $(OBJECTS)   
45
46
47 ..\config.h     : ..\config.h.win32
48         copy ..\config.h.win32 ..\config.h
49
50 clean:
51         rm -f $(OBJECTS) libui.lib