Made --enable-dll the default.
[wine] / Makefile.in
1 # This Makefile understands the following targets:
2 #
3 # all (default):        build wine
4 # lib:                  build libwine
5 # clean:                remove all intermediate files
6 # distclean:            also remove all files created by configure
7 # install:              install everything
8 # uninstall:            uninstall everything
9 # depend:               create the dependencies
10 # etags:                create a TAGS file for Emacs.
11 # manpages:             compile manpages for Wine API
12 #
13
14 # Main target to build
15
16 MAIN_TARGET = @MAIN_TARGET@
17 LIB_TARGET  = @LIB_TARGET@
18 LIB_TYPE    = @LIB_TYPE@
19 ALT_LINK    = @ALT_LINK@
20
21 # Directories
22
23 TOPSRCDIR = @top_srcdir@
24 TOPOBJDIR = .
25 SRCDIR    = @srcdir@
26 VPATH     = @srcdir@
27 MODULE    = wine
28 SOVERSION = 1.0
29
30 TOOLSUBDIRS = \
31         tools \
32         tools/wrc
33
34 LIBSUBDIRS = \
35         controls \
36         console \
37         dlls/advapi32 \
38         dlls/avifil32 \
39         dlls/comctl32 \
40         dlls/commdlg \
41         dlls/crtdll \
42         dlls/dciman32 \
43         dlls/display \
44         dlls/dplayx \
45         dlls/dsound \
46         dlls/icmp \
47         dlls/imagehlp \
48         dlls/imm32 \
49         dlls/lzexpand \
50         dlls/mouse \
51         dlls/mpr \
52         dlls/msacm \
53         dlls/msacm32 \
54         dlls/msnet32 \
55         dlls/msvideo \
56         dlls/ntdll \
57         dlls/odbc32 \
58         dlls/ole32 \
59         dlls/oleaut32 \
60         dlls/olecli \
61         dlls/oledlg \
62         dlls/olesvr \
63         dlls/psapi \
64         dlls/rasapi32 \
65         dlls/shell32 \
66         dlls/sound \
67         dlls/stress \
68         dlls/tapi32 \
69         dlls/version \
70         dlls/win32s \
71         dlls/win87em \
72         dlls/winaspi \
73         dlls/windebug \
74         dlls/wing \
75         dlls/winmm \
76         dlls/winmm/mcianim \
77         dlls/winmm/mciavi \
78         dlls/winmm/mcicda \
79         dlls/winmm/mciseq \
80         dlls/winmm/mciwave \
81         dlls/winmm/midimap \
82         dlls/winmm/wavemap \
83         dlls/winmm/wineoss \
84         dlls/winsock \
85         dlls/winspool \
86         dlls/wnaspi32 \
87         files \
88         graphics \
89         graphics/enhmetafiledrv \
90         graphics/metafiledrv \
91         graphics/psdrv \
92         graphics/ttydrv \
93         graphics/win16drv \
94         if1632 \
95         library \
96         loader \
97         loader/ne \
98         loader/dos \
99         memory \
100         misc \
101         msdos \
102         objects \
103         ole \
104         relay32 \
105         resources \
106         scheduler \
107         win32 \
108         windows \
109         windows/ttydrv
110
111 X11SUBDIRS = \
112         graphics/x11drv \
113         tsx11 \
114         windows/x11drv
115
116 EMUSUBDIRS = \
117         debugger \
118         miscemu \
119         server
120
121 PROGSUBDIRS = libtest programs
122
123 DOCSUBDIRS = documentation
124
125 INCSUBDIRS = include
126
127 # Sub-directories to run make into
128 BUILDSUBDIRS = \
129         $(TOOLSUBDIRS) \
130         $(LIBSUBDIRS) \
131         $(X11SUBDIRS) \
132         $(EMUSUBDIRS) \
133         $(PROGSUBDIRS) \
134         $(DOCSUBDIRS)
135
136 # Sub-directories to run make depend into
137 DEPENDSUBDIRS = $(LIBSUBDIRS) $(X11SUBDIRS) $(EMUSUBDIRS) $(DOCSUBDIRS)
138
139 # Sub-directories to run make install into
140 INSTALLSUBDIRS = $(DOCSUBDIRS) $(INCSUBDIRS)
141
142 # Sub-directories to run make lint into
143 LINTSUBDIRS = $(LIBSUBDIRS) $(X11SUBDIRS) $(EMUSUBDIRS) $(DOCSUBDIRS)
144
145 # Extra sub-directories to clean
146 CLEANSUBDIRS = dlls include include/bitmaps include/wine
147
148 LIBOBJS = \
149         controls/controls.o \
150         console/console.o \
151         dlls/advapi32/advapi32.o \
152         dlls/avifil32/avifil32.o \
153         dlls/comctl32/comctl32.o \
154         dlls/commdlg/commdlg.o \
155         dlls/crtdll/crtdll.o \
156         dlls/dciman32/dciman32.o \
157         dlls/display/display.o \
158         dlls/dplayx/dplayx.o \
159         dlls/dsound/dsound.o \
160         dlls/icmp/icmp.o \
161         dlls/imagehlp/imagehlp.o \
162         dlls/imm32/imm32.o \
163         dlls/lzexpand/lzexpand.o \
164         dlls/mouse/mouse.o \
165         dlls/mpr/mpr.o \
166         dlls/msacm/msacm.o \
167         dlls/msacm32/msacm32.o \
168         dlls/msnet32/msnet32.o \
169         dlls/msvideo/msvideo.o \
170         dlls/ntdll/ntdll.o \
171         dlls/odbc32/odbc32.o \
172         dlls/ole32/ole32.o \
173         dlls/oleaut32/oleaut32.o \
174         dlls/olecli/olecli.o \
175         dlls/oledlg/oledlg.o \
176         dlls/olesvr/olesvr.o \
177         dlls/psapi/psapi.o \
178         dlls/rasapi32/rasapi32.o \
179         dlls/shell32/shell32.o \
180         dlls/sound/sound.o \
181         dlls/stress/stress.o \
182         dlls/tapi32/tapi32.o \
183         dlls/version/version.o \
184         dlls/win32s/win32s.o \
185         dlls/win87em/win87em.o \
186         dlls/winaspi/winaspi.o \
187         dlls/windebug/windebug.o \
188         dlls/wing/wing.o \
189         dlls/winmm/winmm.o \
190         dlls/winmm/mcianim/mcianim.drv.o \
191         dlls/winmm/mciavi/mciavi.drv.o \
192         dlls/winmm/mcicda/mcicda.drv.o \
193         dlls/winmm/mciseq/mciseq.drv.o \
194         dlls/winmm/mciwave/mciwave.drv.o \
195         dlls/winmm/midimap/midimap.drv.o \
196         dlls/winmm/wavemap/msacm.drv.o \
197         dlls/winmm/wineoss/wineoss.drv.o \
198         dlls/winsock/winsock.o \
199         dlls/winspool/winspool.o \
200         dlls/wnaspi32/wnaspi32.o \
201         files/files.o \
202         graphics/graphics.o \
203         graphics/enhmetafiledrv/enhmetafiledrv.o \
204         graphics/metafiledrv/metafiledrv.o \
205         graphics/psdrv/psdrv.o \
206         graphics/ttydrv/ttydrv.o \
207         graphics/win16drv/win16drv.o \
208         if1632/if1632.o \
209         loader/loader.o \
210         loader/ne/ne.o \
211         loader/dos/dos.o \
212         memory/memory.o \
213         misc/misc.o \
214         msdos/msdos.o \
215         objects/objects.o \
216         ole/ole.o \
217         relay32/relay32.o \
218         resources/resources.o \
219         scheduler/scheduler.o \
220         win32/win32.o \
221         windows/windows.o \
222         windows/ttydrv/ttydrv.o
223
224 X11OBJS = \
225         graphics/x11drv/x11drv.o \
226         tsx11/tsx11.o \
227         windows/x11drv/x11drv.o
228
229 EMUOBJS = \
230         debugger/debugger.o \
231         miscemu/miscemu.o
232
233 EXTRA_OBJS = $(LIBOBJS) $(X11OBJS)
234
235 all: Makefile Make.rules server $(MAIN_TARGET)
236         @echo "Wine build complete."
237
238 LIBLINTS = $(LIBOBJS:.o=.ln) 
239 X11LINTS = $(X11OBJS:.o=.ln)
240 EMULINTS = $(EMUOBJS:.o=.ln)
241
242 lint:: llib-lwine.ln $(EMULINTS)
243         $(LINT) $(ALLLINTFLAGS) -L. -lwine $(EMULINTS)
244
245 WINAPI_CHECK_EXTRA_FLAGS = --global
246
247 @MAKE_RULES@
248
249 Make.rules: Make.rules.in configure
250         @echo $? is newer than 'Make.rules', please rerun ./configure!
251         @exit 1
252
253 install:: install_$(MAIN_TARGET)
254
255 emu: wine
256
257 lib: $(LIBSUBDIRS) $(X11SUBDIRS) $(LIB_TARGET)
258
259 wine wine.sym: $(LIB_TARGET) $(EMUOBJS) $(X11OBJS) $(LIBOBJS)
260         $(CC) -o wine $(EMUOBJS) $(ALT_LINK) $(LDOPTIONS) $(X_LIBS) $(XLIB) $(LIBS)
261         nm -n wine | grep -v _compiled >wine.sym
262
263 llib-lwine.ln : $(LIBLINTS) $(X11LINTS)
264         $(LINT) $(ALLLINTFLAGS) -owine $(LIBLINTS) $(X11LINTS)
265
266 install_emu: install_lib
267         $(INSTALL_PROGRAM) wine $(bindir)/wine
268
269 install_lib: install_$(LIB_TYPE)
270
271 install_nolib: dummy
272         [ -d $(libdir) ] || $(MKDIR) $(libdir)
273         if [ -f wine.sym ]; then $(INSTALL_DATA) wine.sym $(libdir)/wine.sym; fi
274         [ -d $(bindir) ] || $(MKDIR) $(bindir)
275         $(INSTALL_PROGRAM) server/wineserver $(bindir)/wineserver
276         $(INSTALL_PROGRAM) windows/x11drv/wineclipsrv $(bindir)/wineclipsrv
277         $(INSTALL_PROGRAM) loader/dos/dosmod $(bindir)/dosmod
278
279 install_dll: install_nolib
280         $(INSTALL_PROGRAM) $(LIB_TARGET) $(libdir)
281         $(LDCONFIG) || (cd $(libdir) ; $(RM) libwine.so ; $(LN_S) $(LIB_TARGET) libwine.so)
282
283 install_static: install_nolib
284         $(INSTALL_DATA) $(LIB_TARGET) $(libdir)
285
286 uninstall::
287         cd $(libdir) && $(RM) $(LIB_TARGET) libwine.a libwine.so wine.sym
288         cd $(bindir) && $(RM) wine wineserver wineclipsrv dosmod
289
290 $(X11OBJS) $(EMUOBJS) $(LIBOBJS): $(TOOLSUBDIRS) dummy
291         @cd `dirname $@` && $(MAKE) `basename $@`
292
293 $(BUILDSUBDIRS): dummy
294         @cd $@ && $(MAKE)
295
296 $(LIBLINTS) $(X11LINTS) $(EMULINTS): dummy
297         @echo $@ | sed 's%\(.*\)\/[^\/]*%cd \1 \&\& make lint%' | sh
298
299 install_programs: dummy
300         @cd programs && $(MAKE) install
301
302 uninstall_programs: dummy
303         @cd programs && $(MAKE) uninstall
304
305 install::
306         for i in $(INSTALLSUBDIRS); do (cd $$i && $(MAKE) install) || exit 1; done
307
308 uninstall::
309         for i in $(INSTALLSUBDIRS); do (cd $$i && $(MAKE) uninstall) || exit 1; done
310
311 depend:: dummy
312         for i in $(DEPENDSUBDIRS); do (cd $$i && $(MAKE) depend) || exit 1; done
313
314 TAGS etags:
315         etags `find $(TOPSRCDIR) -name '*.[chS]' -print | grep -v dbgmain`
316
317 manpages:
318         -$(MKDIR) $(TOPOBJDIR)/documentation/man3w
319         for i in $(LIBSUBDIRS); do (cd $$i && $(MAKE) man); done
320
321 htmlpages:
322         -$(MKDIR) $(TOPOBJDIR)/documentation/html
323         for i in $(LIBSUBDIRS); do (cd $$i && $(MAKE) html); done
324
325 clean::
326         for i in $(BUILDSUBDIRS); do (cd $$i; $(MAKE) clean) || exit 1; done
327         for i in $(CLEANSUBDIRS); do (cd $$i; $(RM) *.o \#*\# .#* *~ *% *.bak *.orig *.rej *.flc); done
328         $(RM) wine wine.sym libwine.so.1.0 TAGS .#*
329
330 distclean: clean
331         $(RM) config.* Make.rules include/config.h documentation/wine.man documentation/wine.conf.man
332         $(RM) `find . \( -name Makefile -o -size 0 \) -print`
333
334 # We depend on configure above for checks, so we better don't use this rule.
335 #configure: configure.in
336 #       autoconf
337
338 include/config.h.in: configure.in include/acconfig.h
339         autoheader -l include
340
341 ### Dependencies: