Removed .s files.
[wine] / Makefile.in
1 # This Makefile understands the following targets:
2 #
3 # all (default):        build wine
4 # clean:                remove all intermediate files
5 # distclean:            also remove all files created by configure
6 # install:              install everything
7 # uninstall:            uninstall everything
8 # depend:               create the dependencies
9 # etags:                create a TAGS file for Emacs.
10 # manpages:             compile manpages for Wine API
11 #
12
13 # Directories
14
15 TOPSRCDIR = @top_srcdir@
16 TOPOBJDIR = .
17 SRCDIR    = @srcdir@
18 VPATH     = @srcdir@
19 LIBEXT    = @LIBEXT@
20 LDCONFIG  = @LDCONFIG@
21 MODULE    = wine
22 IMPORTS   = ntdll
23
24 # Stand-alone programs
25 PROGRAMS = \
26         loader/dos/dosmod \
27         server/wineserver
28
29 # Programs that link with libwine
30 LIBPROGRAMS = \
31         debugger/winedbg
32
33 # Libraries (not dlls) to build
34 LIBRARIES = \
35         library/libwine.$(LIBEXT) \
36         unicode/libwine_unicode.$(LIBEXT)
37
38 # Sub-directories to run make depend/clean into
39 SUBDIRS = \
40         debugger \
41         dlls \
42         documentation \
43         include \
44         library \
45         libtest \
46         miscemu \
47         programs \
48         server \
49         tools \
50         unicode
51
52 # Sub-directories to run make install into
53 INSTALLSUBDIRS = \
54         debugger \
55         dlls \
56         documentation \
57         include \
58         library \
59         server \
60         tools \
61         unicode
62
63 EMUOBJS = \
64         miscemu/miscemu.o
65
66 DLLOBJS = $(DLLS:%=dlls/lib%.@LIBEXT@)
67
68 all: Make.rules $(PROGRAMS) $(LIBPROGRAMS) wine
69         @echo "Wine build complete."
70
71 WINAPI_CHECK_EXTRA_FLAGS = --global
72
73 @MAKE_RULES@
74
75 Make.rules: Make.rules.in configure
76         @echo $? is newer than 'Make.rules', please rerun ./configure!
77         @exit 1
78
79 wine: libwine.$(LIBEXT) libwine_unicode.$(LIBEXT) dlls $(EMUOBJS)
80         $(CC) -o wine $(EMUOBJS) $(DLL_LINK) $(LIBS) $(LDFLAGS)
81
82 install:: all $(INSTALLSUBDIRS:%=%/__install__)
83         [ -d $(bindir) ] || $(MKDIR) $(bindir)
84         $(INSTALL_PROGRAM) wine $(bindir)/wine
85         $(INSTALL_PROGRAM) loader/dos/dosmod $(bindir)/dosmod
86         -$(LDCONFIG)
87
88 uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
89         cd $(bindir) && $(RM) wine dosmod
90
91 $(EMUOBJS) $(DLLOBJS) $(PROGRAMS) $(LIBPROGRAMS) $(LIBRARIES): dummy
92         @cd `dirname $@` && $(MAKE) `basename $@`
93
94 libwine.$(LIBEXT): library/libwine.$(LIBEXT)
95         $(RM) $@ && $(LN_S) library/libwine.$(LIBEXT) $@
96
97 libwine_unicode.$(LIBEXT): unicode/libwine_unicode.$(LIBEXT)
98         $(RM) $@ && $(LN_S) unicode/libwine_unicode.$(LIBEXT) $@
99
100 # Dependencies between directories
101
102 $(EMUOBJS) $(DLLOBJS) $(PROGRAMS): tools
103
104 $(LIBPROGRAMS): tools dlls libwine.$(LIBEXT) libwine_unicode.$(LIBEXT)
105
106 server tools: libwine_unicode.$(LIBEXT)
107
108 dlls: tools libwine.$(LIBEXT) libwine_unicode.$(LIBEXT)
109
110 checklink::
111         $(CC) -o checklink $(TOPSRCDIR)/library/checklink.c -L. -lwine -lwine_unicode $(LIBS) && $(RM) checklink
112
113 install_programs: dummy
114         @cd programs && $(MAKE) install
115
116 uninstall_programs: dummy
117         @cd programs && $(MAKE) uninstall
118
119 checklink::
120         @cd dlls && $(MAKE) checklink
121
122 TAGS etags:
123         etags `find $(TOPSRCDIR) -name '*.[chS]' -print | grep -v dbgmain`
124
125 manpages:
126         -$(MKDIR) $(TOPOBJDIR)/documentation/man3w
127         for i in $(SUBDIRS); do (cd $$i && $(MAKE) man); done
128
129 htmlpages:
130         -$(MKDIR) $(TOPOBJDIR)/documentation/html
131         for i in $(SUBDIRS); do (cd $$i && $(MAKE) html); done
132
133 clean::
134         $(RM) wine
135
136 distclean: clean
137         $(RM) config.* TAGS Make.rules dlls/Makedll.rules include/config.h documentation/wine.man documentation/wine.conf.man tools/winelauncher
138         $(RM) `find . \( -name Makefile -o -size 0 \) -print`
139
140 # We depend on configure above for checks, so we better don't use this rule.
141 #configure: configure.in
142 #       autoconf
143
144 include/config.h.in: configure.in include/acconfig.h
145         autoheader -l include
146
147 ### Dependencies: