makefiles: Move the main module rules to the global Make.rules file.
[wine.git] / Make.vars.in
blob570009ef611ec550e24a6b201c5004f9c7a2755e
1 # @configure_input@      -*-Makefile-*-
3 prefix          = @prefix@
4 exec_prefix     = @exec_prefix@
5 bindir          = @bindir@
6 libdir          = @libdir@
7 datarootdir     = @datarootdir@
8 datadir         = @datadir@
9 infodir         = @infodir@
10 mandir          = @mandir@
11 fontdir         = $(datadir)/wine/fonts
12 includedir      = @includedir@/wine
13 dlldir          = @dlldir@
14 fakedlldir      = $(dlldir)/fakedlls
15 top_srcdir      = @top_srcdir@
16 top_builddir    = @top_builddir@
17 srcdir          = @srcdir@
18 VPATH           = @srcdir@
19 SHELL           = /bin/sh
20 RM              = rm -f
21 MV              = mv
22 CC              = @CC@
23 CROSSCC         = @CROSSCC@
24 CFLAGS          = @CFLAGS@
25 CPPFLAGS        = @CPPFLAGS@
26 EXTRACFLAGS     = @EXTRACFLAGS@
27 TARGETFLAGS     = @TARGETFLAGS@
28 LIBS            = @LIBS@
29 BISON           = @BISON@
30 FLEX            = @FLEX@
31 EXEEXT          = @EXEEXT@
32 OBJEXT          = @OBJEXT@
33 DLLEXT          = @DLLEXT@
34 DLLPREFIX       = @DLLPREFIX@
35 FAKEEXT         = $(DLLEXT:.so=.fake)
36 TOOLSEXT        = @TOOLSEXT@
37 IMPLIBEXT       = @IMPLIBEXT@
38 DLLTOOL         = @DLLTOOL@
39 AR              = @AR@
40 ARFLAGS         = @ARFLAGS@
41 RANLIB          = @RANLIB@
42 STRIP           = @STRIP@
43 LN_S            = @LN_S@
44 MKDIR_P         = @MKDIR_P@
45 TOOLSDIR        = @TOOLSDIR@
46 LDFLAGS         = @LDFLAGS@
47 PRELINK         = @PRELINK@
48 FONTFORGE       = @FONTFORGE@
49 RSVG            = @RSVG@
50 CONVERT         = @CONVERT@
51 ICOTOOL         = @ICOTOOL@
52 MSGFMT          = @MSGFMT@
53 CROSSTARGET     = @CROSSTARGET@
54 LINGUAS         = @LINGUAS@
55 ALL_MO_FILES    = $(LINGUAS:%=@top_builddir@/po/%.mo)
56 PORCFLAGS       = @PORCFLAGS@
57 CROSSAR         = $(CROSSTARGET)-ar
58 CROSSRANLIB     = $(CROSSTARGET)-ranlib
59 BUILDIMAGE      = $(top_srcdir)/tools/buildimage
60 C2MAN           = $(top_srcdir)/tools/c2man.pl
61 RUNTEST         = $(top_srcdir)/tools/runtest
62 MAKECTESTS      = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
63 MAKEXFTMPL      = $(TOOLSDIR)/tools/make_xftmpl$(TOOLSEXT)
64 MAKEDEP         = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
65 RELPATH         = $(TOOLSDIR)/tools/relpath$(TOOLSEXT)
66 SFNT2FNT        = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
67 WIDL            = $(TOOLSDIR)/tools/widl/widl$(TOOLSEXT)
68 WINEBUILD       = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
69 WMC             = $(TOOLSDIR)/tools/wmc/wmc$(TOOLSEXT)
70 WRC             = $(TOOLSDIR)/tools/wrc/wrc$(TOOLSEXT)
71 LIBPORT         = $(top_builddir)/libs/port/libwine_port.a
72 LIBWPP          = $(top_builddir)/libs/wpp/libwpp.a
73 LIBWINE         = -L$(top_builddir)/libs/wine -lwine
74 LIBWINE_STATIC  = $(top_builddir)/libs/wine/libwine_static.a
75 WINEGCC         = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(top_builddir) @UNWINDFLAGS@
76 CROSSWINEGCC    = $(TOOLSDIR)/tools/winegcc/winegcc $(CROSSTARGET:%=-b %) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(top_builddir) --lib-suffix=.cross.a
77 LDRPATH_INSTALL = @LDRPATH_INSTALL@
78 LDRPATH_LOCAL   = @LDRPATH_LOCAL@
79 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
80 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
81 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
82 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
83 prog_manext     = 1
84 api_manext      = 3w
85 conf_manext     = 5
86 @SET_MAKE@
88 all:
89 dummy:
90 .PHONY: all dummy
92 # End of common header