GTK Wimp has it's own setting: GTK_WIMP_DIR,
[obnox/wireshark/wip.git] / Makefile.nmake
1 ## Makefile for building ethereal.exe with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
3 #
4 # $Id: Makefile.nmake,v 1.419 2004/05/14 16:23:38 ulfl Exp $
5
6 include config.nmake
7 include <win32.mak>
8
9 ############### no need to modify below this line #########
10
11 CC = cl
12 LINK= link
13
14 LDFLAGS = /NOLOGO /INCREMENTAL:no /MACHINE:I386 $(LOCAL_LDFLAGS)
15
16 CFLAGS=-DHAVE_CONFIG_H $(LOCAL_CFLAGS) $(GLIB_CFLAGS) /I. /Iwiretap \
17         $(ZLIB_CFLAGS) /I$(PCAP_DIR)\include \
18         /I$(NET_SNMP_DIR)\include /I$(NET_SNMP_DIR)\win32 \
19         $(ADNS_CFLAGS) $(PCRE_CFLAGS) -D_U_=""
20
21 CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL
22
23 .c.obj::
24         $(CC) $(CVARSDLL) $(CFLAGS) -Fd.\ -c $<
25
26 PLATFORM_SRC = capture-wpcap.c
27
28 include Makefile.common
29
30 include epan\Makefile.common
31
32 BUILT_SOURCES = $(BUILT_SOURCES) \
33         cvsversion.h
34
35 DISSECTOR_SRC = $(DISSECTOR_SRC:../=)
36 DISSECTOR_OBJECTS = $(DISSECTOR_SRC:.c=.obj)
37
38 DISSECTOR_SUPPORT_SRC = $(DISSECTOR_SUPPORT_SRC:../=)
39 DISSECTOR_SUPPORT_OBJECTS = $(DISSECTOR_SUPPORT_SRC:.c=.obj)
40
41 # remove register.obj from "DISSECTOR_SUPPORT_OBJECTS". 
42 # creation and compilation of register.c has been moved to epan.  
43 DISSECTOR_SUPPORT_OBJECTS = $(DISSECTOR_SUPPORT_OBJECTS:register.obj=)
44
45 ethereal_OBJECTS = $(ethereal_SOURCES:.c=.obj)
46 tethereal_OBJECTS = $(tethereal_SOURCES:.c=.obj)
47 dftest_OBJECTS = $(dftest_SOURCES:.c=.obj)
48
49 randpkt_OBJECTS = $(randpkt_SOURCES:.c=.obj)
50
51 EXTRA_OBJECTS = \
52 #       snprintf.obj    \
53 #       strerror.obj    \
54         mkstemp.obj     \
55         strptime.obj
56
57 ethereal_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
58         wsock32.lib user32.lib \
59         $(NET_SNMP_DIR)\win32\lib\netsnmp.lib \
60 !IFDEF ENABLE_LIBETHEREAL
61         epan\libethereal.lib \
62 !ELSE
63         dissectors.lib \
64         epan\ethereal.lib \
65         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
66         $(ADNS_LIBS) \
67         $(PCRE_LIBS) \
68         $(ZLIB_LIBS)
69 !ENDIF
70 #       $(PCAP_DIR)\lib\wpcap.lib
71
72 tethereal_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
73         wsock32.lib user32.lib \
74         $(GLIB_LIBS) \
75         $(NET_SNMP_DIR)\win32\lib\netsnmp.lib \
76 !IFDEF ENABLE_LIBETHEREAL
77         epan\libethereal.lib \
78 !ELSE
79         dissectors.lib \
80         epan\ethereal.lib \
81         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
82         $(ADNS_LIBS) \
83         $(PCRE_LIBS) \
84         $(ZLIB_LIBS)
85 !ENDIF
86
87 editcap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
88         wsock32.lib user32.lib \
89         $(GLIB_LIBS)
90
91 mergecap_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
92         wsock32.lib user32.lib \
93         $(GLIB_LIBS)
94
95 dftest_LIBS=  wiretap\wiretap-$(WTAP_VERSION).lib \
96         wsock32.lib user32.lib \
97         $(GLIB_LIBS) \
98         $(NET_SNMP_DIR)\win32\lib\netsnmp.lib \
99 !IFDEF ENABLE_LIBETHEREAL
100         epan\libethereal.lib \
101 !ELSE
102         dissectors.lib \
103         epan\ethereal.lib \
104         epan\dfilter\dfilter.lib epan\ftypes\ftypes.lib \
105         $(ADNS_LIBS) \
106         $(PCRE_LIBS) \
107         $(ZLIB_LIBS)    
108 !ENDIF
109
110 randpkt_LIBS= wiretap\wiretap-$(WTAP_VERSION).lib \
111         user32.lib \
112         $(GLIB_LIBS) \
113         $(NET_SNMP_DIR)\win32\lib\netsnmp.lib
114
115 EXECUTABLES=ethereal.exe ethereal-gtk2.exe tethereal.exe editcap.exe mergecap.exe text2pcap.exe
116
117 RESOURCES=image\ethereal.res image\tethereal.res image\editcap.res image\mergecap.res image\text2pcap.res
118
119 all: config.h tools wiretap epan image $(EXECUTABLES) $(RESOURCES) doc
120
121 packaging: all
122         cd packaging
123         cd nsis
124         nmake -f makefile.nmake
125         cd ..
126         cd ..
127
128 separate_packaging: all
129         cd packaging
130         cd nsis
131 !IFDEF GTK1_DIR
132         nmake -f makefile.nmake GTK1_ONLY="USE"
133 !ENDIF
134 !IFDEF GTK2_DIR
135         nmake -f makefile.nmake GTK2_ONLY="USE"
136 !ENDIF
137         cd ..
138         cd ..
139
140 $(RESOURCES): image
141
142 wiretap\wiretap-$(WTAP_VERSION).lib: wiretap
143
144 !IFNDEF GTK1_DIR
145 ethereal.exe    : 
146 !ELSE
147 ethereal.exe    : config.h cvsversion.h $(ethereal_OBJECTS) $(EXTRA_OBJECTS) epan gtk image\ethereal.res wiretap\wiretap-$(WTAP_VERSION).lib gtk\libui.lib dissectors.lib plugins
148         @echo Linking $@
149         $(LINK) @<<
150                 /OUT:ethereal.exe $(guiflags) $(guilibsdll) $(LDFLAGS) /SUBSYSTEM:windows $(ethereal_LIBS) $(GTK1_LIBS) gtk\libui.lib $(ethereal_OBJECTS) $(EXTRA_OBJECTS) image\ethereal.res
151 <<
152 !ENDIF
153
154 !IFNDEF GTK2_DIR
155 ethereal-gtk2.exe       : 
156 !ELSE
157 ethereal-gtk2.exe       : config.h cvsversion.h $(ethereal_OBJECTS) $(EXTRA_OBJECTS) epan gtk2 image\ethereal.res wiretap\wiretap-$(WTAP_VERSION).lib gtk2.tmp\libui.lib dissectors.lib plugins
158         @echo Linking $@
159         $(LINK) @<<
160                 /OUT:ethereal-gtk2.exe $(guiflags) $(guilibsdll) $(LDFLAGS) /SUBSYSTEM:windows $(ethereal_LIBS) $(GTK2_LIBS) gtk2.tmp\libui.lib $(ethereal_OBJECTS) $(EXTRA_OBJECTS) image\ethereal.res
161 <<
162 !ENDIF
163
164 tethereal.exe   : config.h cvsversion.h $(tethereal_OBJECTS) $(EXTRA_OBJECTS) epan image\tethereal.res wiretap\wiretap-$(WTAP_VERSION).lib dissectors.lib plugins
165         @echo Linking $@
166         $(LINK) @<<
167                 /OUT:tethereal.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(tethereal_LIBS) $(tethereal_OBJECTS) $(EXTRA_OBJECTS) image\tethereal.res
168 <<
169
170 editcap.exe     : config.h editcap.obj getopt.obj wiretap\wiretap-$(WTAP_VERSION).lib image\editcap.res
171         @echo Linking $@
172         $(LINK) @<<
173                 /OUT:editcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console editcap.obj getopt.obj $(editcap_LIBS) image\editcap.res
174 <<
175
176 mergecap.exe    : config.h cvsversion.h mergecap.obj getopt.obj wiretap\wiretap-$(WTAP_VERSION).lib image\mergecap.res
177         @echo Linking $@
178         $(LINK) @<<
179                 /OUT:mergecap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console mergecap.obj getopt.obj $(mergecap_LIBS) image\mergecap.res
180 <<
181
182 text2pcap.exe   : config.h text2pcap.obj text2pcap-scanner.obj getopt.obj strptime.obj image\text2pcap.res
183         @echo Linking $@
184         $(LINK) @<<
185                 /OUT:text2pcap.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console text2pcap.obj text2pcap-scanner.obj getopt.obj strptime.obj image\text2pcap.res
186 <<
187
188 dftest.exe      : $(dftest_OBJECTS) $(EXTRA_OBJECTS) dissectors.lib
189         $(LINK) @<<
190                 /OUT:dftest.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(dftest_LIBS) $(dftest_OBJECTS) $(EXTRA_OBJECTS)
191 <<
192
193 randpkt.exe     : $(randpkt_OBJECTS) $(EXTRA_OBJECTS)
194         $(LINK) @<<
195                 /OUT:randpkt.exe $(conflags) $(conlibsdll) $(LDFLAGS) /SUBSYSTEM:console $(randpkt_LIBS) $(randpkt_OBJECTS)
196 <<
197
198 dissectors.lib: config.h $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) $(EXTRA_OBJECTS)
199         lib /out:dissectors.lib $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) $(EXTRA_OBJECTS)
200
201 config.h        : config.h.win32 config.nmake
202         sed -e s/@VERSION@/$(VERSION)/ \
203             -e "s/@HAVE_GNU_ADNS@/$(ADNS_CONFIG)/" \
204             -e "s/@HAVE_PCRE@/$(PCRE_CONFIG)/" \
205             -e "s/@HAVE_LIBZ@/$(ZLIB_CONFIG)/" \
206             -e "s/@HAVE_LIBPCAP@/$(WINPCAP_CONFIG)/" \
207             -e "s/@HAVE_PCAP_FINDALLDEVS@/$(PCAP_FINDALLDEVS_CONFIG)/" \
208             -e "s/@HAVE_LIBETHEREALDLL@/$(LIBETHEREAL_CONFIG)/" \
209             -e "s/@WPCAP_CONSTIFIED@/$(WPCAP_CONSTIFIED_CONFIG)/" \
210             -e "s/@HAVE_LIBETHEREALDLL@/$(LIBETHEREAL_CONFIG)/" \
211             < config.h.win32 > $@
212
213 ps.c    : rdps.exe print.ps
214         rdps print.ps ps.c
215
216
217 #
218 # Build the version string
219 #
220 cvsversion.h:
221         $(PERL) make-version.pl
222
223 #
224 # The header files listed here are built from x11-fields using Perl;
225 # we declare a dependency here so that they get built.
226 #
227 packet-x11.obj  : packet-x11.c x11-declarations.h x11-register-info.h
228
229 #
230 # Build various header files for the X11 dissector.
231 #
232 x11-declarations.h x11-register-info.h: x11-fields process-x11-fields.pl
233         $(PERL) process-x11-fields.pl <x11-fields
234
235 packet-ncp2222.c : ncp2222.py
236 !IFDEF PYTHON
237         @echo Making packet-ncp2222.c
238         $(PYTHON) ncp2222.py -o packet-ncp2222.c
239 !ELSE
240         @echo Faking packet-ncp2222.c...
241         @echo Python is required to build the NCP disector
242         @echo Hiding packet-ncp.c...
243         mv packet-ncp.c packet-ncp.c.save
244         touch packet-ncp.c $@
245 !ENDIF
246
247 #
248 # Build "tethereal-tap-register.c", which contains a function 
249 # "register_all_tap_listeners()"
250 # that calls the register routines for all tehtereal tap listeners.
251 #
252 # We do this by grepping through sources.
253 #
254 # Formatting conventions:  The name of the tap_listener_register_* 
255 # routines must start in column zero, or must be preceded only by 
256 # "void " starting in column zero, and must not be inside #if.
257 #
258 # The first argument is the name of the file to write.
259 # The second argument is the directory in which the source files live.
260 # All subsequent arguments are the files to scan.
261 #
262 tethereal-tap-register.c: $(TETHEREAL_TAP_SRC) make-tapreg-dotc
263         @echo Making tethereal-tap-register.c
264         @$(SH) make-tapreg-dotc tethereal-tap-register.c . $(TETHEREAL_TAP_SRC)
265
266 text2pcap-scanner.c : text2pcap-scanner.l
267         $(LEX) -otext2pcap-scanner.c text2pcap-scanner.l
268
269 gtk2_distclean:
270         rm -f gtk2.tmp/*.*
271         if exist gtk2.tmp rmdir gtk2.tmp
272
273 clean: gtk2_distclean
274         rm -f $(ethereal_OBJECTS) $(tethereal_OBJECTS) $(EXTRA_OBJECTS) \
275                 $(EXECUTABLES) $(PDB_FILE) \
276                 $(DISSECTOR_OBJECTS) $(DISSECTOR_SUPPORT_OBJECTS) dissectors.lib\
277                 editcap.obj mergecap.obj text2pcap.obj getopt.obj\
278                 text2pcap-scanner.obj text2pcap-scanner.c rdps.obj \
279                 rdps.pdb config.h ps.c \
280                 rdps.exe rdps.ilk dftest.obj dftest.exe randpkt.obj randpkt.ext \
281                 $(RESOURCES)
282         cd wiretap
283         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
284         cd ../gtk
285         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
286         cd ../epan
287         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
288         cd ../plugins
289         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
290         cd ../tools
291         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
292         cd ../image
293         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
294         cd ../doc
295         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
296         cd ../help
297         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
298         cd ../packaging/nsis
299         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
300         cd ../..
301
302 # Call distclean only, if you would like to remove ALL generated files.
303 # Be sure to have python and perl installed to regenerate them.
304 distclean: clean gtk2_distclean
305         rm -f $(BUILT_SOURCES) \
306                 packet-ncp2222.c tethereal-tap-register.c 
307         cd wiretap
308         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
309         cd ../gtk
310         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
311         cd ../epan
312         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
313         cd ../plugins
314         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
315         cd ../tools
316         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
317         cd ../image
318         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
319         cd ../doc
320         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
321         cd ../help
322         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
323         cd ../packaging/nsis
324         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake distclean
325         cd ../..
326
327 tools::
328         cd tools
329         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
330         cd ..
331
332 image::
333         cd image
334         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
335         cd ..
336
337 wiretap::
338         cd wiretap
339         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
340         cd ..
341
342 gtk:: help config.h cvsversion.h
343         cd gtk
344         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake GTK_CFLAGS="$(GTK1_CFLAGS)" GTK_LIBS="$(GTK1_LIBS)" libui.lib
345         cd ..
346
347 # copy all required files to gtk2.tmp (but only when newer than existing) and compile in that dir
348 gtk2:: help config.h cvsversion.h
349         if not exist gtk2.tmp mkdir gtk2.tmp
350         cd gtk
351         cp --update --preserve Makefile.* *.c *.h ..\gtk2.tmp
352         cd ..\gtk2.tmp
353         $(MAKE) /$(MAKEFLAGS) /f Makefile.nmake GTK_CFLAGS="$(GTK2_CFLAGS)" GTK_LIBS="$(GTK2_LIBS)" libui.lib
354         cd ..
355
356 epan:: packet-ncp2222.c x11-declarations.h x11-register-info.h dissectors.lib
357         cd epan
358         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
359         cd ..
360
361 plugins::
362         cd plugins
363         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
364         cd ..
365
366 doc::
367         cd doc
368         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
369         cd ..
370
371 help::
372         cd help
373         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake
374         cd ..
375
376 REQUIRED_APPS=\
377         $(SH)   \
378         $(YACC) \
379         $(LEX)  \
380         grep    \
381         $(PERL) \
382         $(PYTHON)       \
383         sed     \
384         unzip   \
385         wget
386
387 verify_apps:
388         @$(SH) tools\win32-setup.sh --appverify $(REQUIRED_APPS)
389
390 setup: verify_apps
391         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
392                 glib glib-2.2.3-20040116.zip
393         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
394                 glib glib-dev-2.2.3-20040116.zip
395 !IFDEF GTK1_DIR
396         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
397                 gtk+ gtk+-1.3.0-20030717.zip
398         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
399                 gtk+ gtk+-dev-1.3.0-20030115.zip
400 !ENDIF
401         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
402                 libiconv-1.9.1.bin.woe32 libiconv-1.9.1.bin.woe32.zip
403         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
404                 gettext-runtime-0.13.1 gettext-runtime-0.13.1.zip
405 !IFDEF NET_SNMP_DIR
406         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
407                 . net-snmp-5.1.zip
408 !ENDIF
409 !IFDEF PCAP_DIR
410         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
411                 . wpdpack_3_0.zip
412 !ENDIF
413 !IFDEF ADNS_DIR
414         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
415                 . adns-1.0-win32-03.zip
416 !ENDIF
417 !IFDEF PCRE_DIR
418         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
419                 . pcre-4.4.zip
420 !ENDIF
421 !IFDEF ZLIB_DIR
422         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
423                 zlib121-dll zlib121-dll.zip
424 !ENDIF
425 !IFDEF GTK2_DIR
426         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
427                 gtk2 gtk2/gtk+-2.2.4-20040124.zip
428         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
429                 gtk2 gtk2/gtk+-dev-2.2.4-20040124.zip
430         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
431                 gtk2 gtk2/pango-1.2.5-20040124.zip
432         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
433                 gtk2 gtk2/pango-dev-1.2.5-20040124.zip
434         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
435                 gtk2 gtk2/atk-1.4.0.zip
436         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
437                 gtk2 gtk2/atk-dev-1.4.0.zip
438 !ENDIF
439 !IFDEF GTK_WIMP_DIR
440         @$(SH) tools\win32-setup.sh --download "$(ETHEREAL_LIBS)" \
441                 gtk-wimp gtk2/gtk-wimp-0.5.4-bin.zip
442 !ENDIF
443         @echo.
444         @echo Ethereal is ready to build.
445
446 update_plugin_api: config.h
447         cd plugins
448         $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake xyzzy
449         cd ..
450