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