winemac: Simplify and optimize making a GL context current with no view.
[wine.git] / Makefile.in
blobb78f43b29929b4aa96393549a651aba276954170
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 # Start of common header
22 # The following variable definitions are copied into all makefiles
24 prefix = @prefix@
25 exec_prefix = @exec_prefix@
26 bindir = @bindir@
27 libdir = @libdir@
28 datarootdir = @datarootdir@
29 datadir = @datadir@
30 mandir = @mandir@
31 fontdir = ${datadir}/wine/fonts
32 includedir = @includedir@/wine
33 dlldir = @dlldir@
34 fakedlldir = ${dlldir}/fakedlls
35 top_srcdir = @top_srcdir@
36 top_builddir = @top_builddir@
37 srcdir = @srcdir@
38 SHELL = /bin/sh
39 RM = rm -f
40 MV = mv
41 CC = @CC@
42 CXX = @CXX@
43 CPPBIN = @CPPBIN@
44 CROSSCC = @CROSSCC@
45 CFLAGS = @CFLAGS@
46 CPPFLAGS = @CPPFLAGS@
47 EXTRACFLAGS = @EXTRACFLAGS@
48 MSVCRTFLAGS = @BUILTINFLAG@
49 TARGETFLAGS = @TARGETFLAGS@
50 UNWINDFLAGS = @UNWINDFLAGS@
51 LDEXECFLAGS = @LDEXECFLAGS@
52 LIBS = @LIBS@
53 BISON = @BISON@
54 FLEX = @FLEX@
55 EXEEXT = @EXEEXT@
56 TOOLSEXT = @TOOLSEXT@
57 DLLTOOL = @DLLTOOL@
58 AR = @AR@
59 ARFLAGS = @ARFLAGS@
60 RANLIB = @RANLIB@
61 STRIP = @STRIP@
62 LN_S = @LN_S@
63 TOOLSDIR = @TOOLSDIR@
64 LD = @LD@
65 LDFLAGS = @LDFLAGS@
66 DLLFLAGS = @DLLFLAGS@
67 PRELINK = @PRELINK@
68 FONTFORGE = @FONTFORGE@
69 RSVG = @RSVG@
70 CONVERT = @CONVERT@
71 ICOTOOL = @ICOTOOL@
72 MSGFMT = @MSGFMT@
73 CROSSTARGET = @CROSSTARGET@
74 LINGUAS = @LINGUAS@
75 SUBDIRS = @SUBDIRS@
76 RUNTESTFLAGS = -q -P wine
77 MAKEDEP = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
78 WINEBUILD = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
79 WRC = $(TOOLSDIR)/tools/wrc/wrc$(TOOLSEXT)
80 PACKAGE_VERSION = @PACKAGE_VERSION@
81 SED_CMD = LC_ALL=C sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' -e 's,@PACKAGE_VERSION\@,@PACKAGE_VERSION@,g'
82 LDRPATH_INSTALL = @LDRPATH_INSTALL@
83 LDRPATH_LOCAL = @LDRPATH_LOCAL@
84 INSTALL_PROGRAM = STRIPPROG="$(STRIP)" $(top_srcdir)/tools/install-sh $(INSTALL_PROGRAM_FLAGS)
85 INSTALL_SCRIPT = $(top_srcdir)/tools/install-sh $(INSTALL_SCRIPT_FLAGS)
86 INSTALL_DATA = $(top_srcdir)/tools/install-sh -m 644 $(INSTALL_DATA_FLAGS)
87 prog_manext = 1
88 api_manext = 3w
89 conf_manext = 5
90 WINELOADER_PROGRAMS = @WINELOADER_PROGRAMS@
91 WINELOADER_DEPENDS = @WINELOADER_DEPENDS@
92 WINELOADER_INSTALL = @WINELOADER_INSTALL@
93 LIBWINE_SHAREDLIB = @LIBWINE_SHAREDLIB@
94 LIBWINE_IMPORTLIB = @LIBWINE_IMPORTLIB@
95 LIBWINE_INSTALL_LIB = @LIBWINE_INSTALL_LIB@
96 LIBWINE_INSTALL_DEV = @LIBWINE_INSTALL_DEV@
97 LIBWINE_LDFLAGS = @LIBWINE_LDFLAGS@
98 LIBWINE_DEPENDS = @LIBWINE_DEPENDS@
99 ALL_TEST_RESOURCES = @ALL_TEST_RESOURCES@
100 @ALL_VARS_RULES@
101 @SET_MAKE@
103 # End of common header
105 all: wine
106 @echo "Wine build complete."
108 # Rules for re-running configure
110 config.status: $(srcdir)/configure
111 @./config.status --recheck
113 include/config.h: include/stamp-h
114 include/stamp-h: $(srcdir)/include/config.h.in config.status
115 @./config.status include/config.h include/stamp-h
117 # Rules for cleaning
119 .PHONY: clean distclean __clean__
121 clean:: __clean__
122 distclean:: clean
123 $(RM) config.* configure.lineno TAGS tags include/config.h include/stamp-h Makefile Make.tmp .gitignore
124 $(RM) -r autom4te.cache documentation/html documentation/api-guide documentation/api-guide-xml documentation/man$(api_manext)
126 # Rules for uninstalling
128 .PHONY: install install-lib install-dev uninstall __uninstall__
129 uninstall:: __uninstall__
130 -rmdir $(DESTDIR)$(fontdir) $(DESTDIR)$(datadir)/wine $(DESTDIR)$(fakedlldir) $(DESTDIR)$(dlldir) $(DESTDIR)$(includedir)/windows/ddk \
131 $(DESTDIR)$(includedir)/windows $(DESTDIR)$(includedir)/msvcrt/sys $(DESTDIR)$(includedir)/msvcrt $(DESTDIR)$(includedir)
133 # Rules for API documentation
135 install-manpages:: manpages
136 for i in documentation/man$(api_manext)/*.$(api_manext); do $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/$$i; done
138 .PHONY: install-manpages
140 # Dependencies between directories
142 # dependencies needed to build any dll or program
143 __tooldeps__: libs/port libs/wine libs/wpp
144 __builddeps__: __tooldeps__ include
145 .PHONY: depend dummy check test testclean crosstest __tooldeps__ __builddeps__
147 dummy:
148 loader: libs/port libs/wine tools
149 server: libs/port libs/wine tools include
150 fonts: tools/sfnt2fon
151 include: tools tools/widl
152 libs/wine tools: libs/port
153 tools/wmc tools/wrc: tools
154 tools/sfnt2fon tools/wmc tools/wrc: libs/wine
155 tools/widl tools/wmc tools/wrc: libs/wpp
156 libs/port libs/wine libs/wpp: include/config.h
158 # Misc rules
160 TAGSFLAGS = --langmap='c:+.idl.l.rh,make:(Make*.in)'
162 TAGS etags:
163 $(RM) TAGS
164 (test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs etags -a $(TAGSFLAGS)
166 tags ctags:
167 $(RM) tags
168 (test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs ctags -a $(TAGSFLAGS)