mshtml: Expose IHTMLWindow7 interface to scripts.
[wine.git] / Makefile.in
blob6b65fdfb8c0c07875b2d6d4e48bf21bc122e228d
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 includedir = @includedir@
31 fontdir = ${datadir}/wine/fonts
32 dlldir = ${libdir}/wine
33 top_srcdir = @top_srcdir@
34 top_builddir = @top_builddir@
35 srcdir = @srcdir@
36 wine64_disable = @wine64_disable@
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 CROSSCFLAGS = @CROSSCFLAGS@
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 SUBDIRS = @SUBDIRS@
75 RUNTESTFLAGS = -q -P wine
76 MAKEDEP = $(TOOLSDIR)/tools/makedep$(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 DISABLED_SUBDIRS = @DISABLED_SUBDIRS@
99 CONFIGURE_TARGETS = @CONFIGURE_TARGETS@
100 @ALL_VARS_RULES@
101 @SET_MAKE@
103 all: wine
104 @echo "Wine build complete."
106 # Rules for re-running configure
108 config.status: $(srcdir)/configure
109 @./config.status --recheck
111 include/config.h: include/stamp-h
112 include/stamp-h: $(srcdir)/include/config.h.in config.status
113 @./config.status include/config.h include/stamp-h
115 # Rules for cleaning
117 distclean:: clean
118 $(RM) -r autom4te.cache documentation/html documentation/api-guide documentation/api-guide-xml documentation/man$(api_manext)
120 # Rules for API documentation
122 install-manpages:: manpages
123 for i in documentation/man$(api_manext)/*.$(api_manext); do $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/$$i; done
125 .PHONY: install-manpages
127 # Dependencies between directories
129 # dependencies needed to build any dll or program
130 __tooldeps__: libs/wpp
131 __builddeps__: __tooldeps__ libs/wine include po
132 .PHONY: depend dummy install install-lib install-dev
134 dummy:
135 server: include
136 libs/port libs/wine libs/wpp: include/config.h
138 # Misc rules
140 TAGSFLAGS = --langmap='c:+.idl.l.rh,make:(Make*.in)'
142 TAGS etags:
143 $(RM) TAGS
144 (test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs etags -a $(TAGSFLAGS)
146 tags ctags:
147 $(RM) tags
148 (test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs ctags -a $(TAGSFLAGS)