mpr: Don't stop enumeration on the first failing network provider.
[wine.git] / Makefile.in
blob22b2ae723050d0f174f710be5df9bed916375b13
1 # This Makefile understands the following targets:
3 # all (default): build wine
4 # clean: remove all intermediate files
5 # distclean: also remove all files created by configure
6 # test: run tests
7 # testclean: clean test results to force running all tests again
8 # crosstest: build tests as native windows applications (requires MinGW)
9 # install-lib: install libraries needed to run applications
10 # install-dev: install development environment
11 # install: install everything
12 # uninstall: uninstall everything
13 # depend: create the dependencies
14 # ctags: create a tags file for vim and others.
15 # etags: create a TAGS file for Emacs.
16 # manpages: compile manpages for Wine API
17 # htmlpages: compile html pages for Wine API
18 # sgmlpages: compile sgml source for the Wine API Guide
19 # xmlpages: compile xml source for the Wine API Guide
21 # The following variable definitions are copied into all makefiles
23 prefix = @prefix@
24 exec_prefix = @exec_prefix@
25 bindir = @bindir@
26 libdir = @libdir@
27 datarootdir = @datarootdir@
28 datadir = @datadir@
29 mandir = @mandir@
30 fontdir = ${datadir}/wine/fonts
31 includedir = @includedir@/wine
32 dlldir = @dlldir@
33 fakedlldir = ${dlldir}/fakedlls
34 top_srcdir = @top_srcdir@
35 top_builddir = @top_builddir@
36 srcdir = @srcdir@
37 SHELL = /bin/sh
38 RM = rm -f
39 MV = mv
40 CC = @CC@
41 CXX = @CXX@
42 CPPBIN = @CPPBIN@
43 CROSSCC = @CROSSCC@
44 CFLAGS = @CFLAGS@
45 CPPFLAGS = @CPPFLAGS@
46 EXTRACFLAGS = @EXTRACFLAGS@
47 MSVCRTFLAGS = @BUILTINFLAG@
48 TARGETFLAGS = @TARGETFLAGS@
49 UNWINDFLAGS = @UNWINDFLAGS@
50 LDEXECFLAGS = @LDEXECFLAGS@
51 LIBS = @LIBS@
52 BISON = @BISON@
53 FLEX = @FLEX@
54 EXEEXT = @EXEEXT@
55 TOOLSEXT = @TOOLSEXT@
56 DLLTOOL = @DLLTOOL@
57 AR = @AR@
58 ARFLAGS = @ARFLAGS@
59 RANLIB = @RANLIB@
60 STRIP = @STRIP@
61 LN_S = @LN_S@
62 TOOLSDIR = @TOOLSDIR@
63 LD = @LD@
64 LDFLAGS = @LDFLAGS@
65 DLLFLAGS = @DLLFLAGS@
66 PRELINK = @PRELINK@
67 FONTFORGE = @FONTFORGE@
68 RSVG = @RSVG@
69 CONVERT = @CONVERT@
70 ICOTOOL = @ICOTOOL@
71 MSGFMT = @MSGFMT@
72 CROSSTARGET = @CROSSTARGET@
73 SUBDIRS = @SUBDIRS@
74 RUNTESTFLAGS = -q -P wine
75 MAKEDEP = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
76 WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
77 WRC = $(TOOLSDIR)/tools/wrc/wrc$(TOOLSEXT)
78 PACKAGE_VERSION = @PACKAGE_VERSION@
79 SED_CMD = LC_ALL=C sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@srcdir\@,$(srcdir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' -e 's,@PACKAGE_VERSION\@,@PACKAGE_VERSION@,g'
80 LDRPATH_INSTALL = @LDRPATH_INSTALL@
81 LDRPATH_LOCAL = @LDRPATH_LOCAL@
82 INSTALL_PROGRAM = STRIPPROG="$(STRIP)" $(top_srcdir)/tools/install-sh $(INSTALL_PROGRAM_FLAGS)
83 INSTALL_SCRIPT = $(top_srcdir)/tools/install-sh $(INSTALL_SCRIPT_FLAGS)
84 INSTALL_DATA = $(top_srcdir)/tools/install-sh -m 644 $(INSTALL_DATA_FLAGS)
85 prog_manext = 1
86 api_manext = 3w
87 conf_manext = 5
88 WINELOADER_PROGRAMS = @WINELOADER_PROGRAMS@
89 WINELOADER_DEPENDS = @WINELOADER_DEPENDS@
90 WINELOADER_INSTALL = @WINELOADER_INSTALL@
91 WINELOADER_LDFLAGS = @WINELOADER_LDFLAGS@
92 LIBWINE_SHAREDLIB = @LIBWINE_SHAREDLIB@
93 LIBWINE_IMPORTLIB = @LIBWINE_IMPORTLIB@
94 LIBWINE_INSTALL_LIB = @LIBWINE_INSTALL_LIB@
95 LIBWINE_INSTALL_DEV = @LIBWINE_INSTALL_DEV@
96 LIBWINE_LDFLAGS = @LIBWINE_LDFLAGS@
97 LIBWINE_DEPENDS = @LIBWINE_DEPENDS@
98 ALL_TEST_RESOURCES = @ALL_TEST_RESOURCES@
99 DISABLED_SUBDIRS = @DISABLED_SUBDIRS@
100 CONFIGURE_TARGETS = @CONFIGURE_TARGETS@
101 @ALL_VARS_RULES@
102 @SET_MAKE@
104 all: wine
105 @echo "Wine build complete."
107 # Rules for re-running configure
109 config.status: $(srcdir)/configure
110 @./config.status --recheck
112 include/config.h: include/stamp-h
113 include/stamp-h: $(srcdir)/include/config.h.in config.status
114 @./config.status include/config.h include/stamp-h
116 # Rules for cleaning
118 .PHONY: clean distclean __clean__
120 clean:: __clean__
121 distclean:: clean
122 $(RM) -r autom4te.cache documentation/html documentation/api-guide documentation/api-guide-xml documentation/man$(api_manext)
124 # Rules for uninstalling
126 .PHONY: install install-lib install-dev uninstall __uninstall__
127 uninstall:: __uninstall__
128 -rmdir $(DESTDIR)$(fontdir) $(DESTDIR)$(datadir)/wine $(DESTDIR)$(fakedlldir) $(DESTDIR)$(dlldir) $(DESTDIR)$(includedir)/windows/ddk \
129 $(DESTDIR)$(includedir)/windows $(DESTDIR)$(includedir)/msvcrt/sys $(DESTDIR)$(includedir)/msvcrt $(DESTDIR)$(includedir)
131 # Rules for API documentation
133 install-manpages:: manpages
134 for i in documentation/man$(api_manext)/*.$(api_manext); do $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/$$i; done
136 .PHONY: install-manpages
138 # Dependencies between directories
140 # dependencies needed to build any dll or program
141 __tooldeps__: libs/port libs/wpp
142 __builddeps__: __tooldeps__ libs/wine include po
143 .PHONY: depend dummy check test testclean crosstest __tooldeps__ __builddeps__
145 dummy:
146 loader: libs/port libs/wine tools
147 server: libs/port libs/wine tools include
148 fonts: tools/sfnt2fon
149 include: tools tools/widl
150 libs/wine tools: libs/port
151 tools/sfnt2fon tools/wmc tools/wrc: tools
152 tools/widl tools/wmc tools/wrc: libs/wpp
153 libs/port libs/wine libs/wpp: include/config.h
155 # Misc rules
157 TAGSFLAGS = --langmap='c:+.idl.l.rh,make:(Make*.in)'
159 TAGS etags:
160 $(RM) TAGS
161 (test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs etags -a $(TAGSFLAGS)
163 tags ctags:
164 $(RM) tags
165 (test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs ctags -a $(TAGSFLAGS)