Release 1.5.29.
[wine] / Make.vars.in
1 # @configure_input@      -*-Makefile-*-
2
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          = @libdir@/wine
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 LIBEXT          = @LIBEXT@
34 DLLEXT          = @DLLEXT@
35 FAKEEXT         = $(DLLEXT:.so=.fake)
36 TOOLSEXT        = @TOOLSEXT@
37 IMPLIBEXT       = @IMPLIBEXT@
38 DLLTOOL         = @DLLTOOL@
39 DLLWRAP         = @DLLWRAP@
40 AR              = @AR@
41 ARFLAGS         = @ARFLAGS@
42 RANLIB          = @RANLIB@
43 LN_S            = @LN_S@
44 TOOLSDIR        = @TOOLSDIR@
45 LDFLAGS         = @LDFLAGS@
46 PRELINK         = @PRELINK@
47 LINT            = @LINT@
48 LINTFLAGS       = @LINTFLAGS@
49 FONTFORGE       = @FONTFORGE@
50 RSVG            = @RSVG@
51 CONVERT         = @CONVERT@
52 ICOTOOL         = @ICOTOOL@
53 MSGFMT          = @MSGFMT@
54 CROSSTARGET     = @CROSSTARGET@
55 LINGUAS         = @LINGUAS@
56 ALL_MO_FILES    = $(LINGUAS:%=@top_builddir@/po/%.mo)
57 PORCFLAGS       = @PORCFLAGS@
58 CROSSAR         = $(CROSSTARGET)-ar
59 CROSSRANLIB     = $(CROSSTARGET)-ranlib
60 MKINSTALLDIRS   = $(top_srcdir)/tools/mkinstalldirs -m 755
61 WINAPI_CHECK    = $(top_srcdir)/tools/winapi/winapi_check
62 BUILDIMAGE      = $(top_srcdir)/tools/buildimage
63 C2MAN           = $(top_srcdir)/tools/c2man.pl
64 RUNTEST         = $(top_srcdir)/tools/runtest
65 MAKECTESTS      = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
66 MAKEXFTMPL      = $(TOOLSDIR)/tools/make_xftmpl$(TOOLSEXT)
67 MAKEDEP         = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
68 RELPATH         = $(TOOLSDIR)/tools/relpath$(TOOLSEXT)
69 SFNT2FNT        = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
70 WIDL            = $(TOOLSDIR)/tools/widl/widl$(TOOLSEXT)
71 WINEBUILD       = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
72 WMC             = $(TOOLSDIR)/tools/wmc/wmc$(TOOLSEXT)
73 WRC             = $(TOOLSDIR)/tools/wrc/wrc$(TOOLSEXT)
74 LIBPORT         = $(top_builddir)/libs/port/libwine_port.a
75 LIBWPP          = $(top_builddir)/libs/wpp/libwpp.a
76 LIBWINE         = -L$(top_builddir)/libs/wine -lwine
77 WINEGCC         = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(top_builddir) @UNWINDFLAGS@
78 CROSSWINEGCC    = $(TOOLSDIR)/tools/winegcc/winegcc $(CROSSTARGET:%=-b %) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(top_builddir) --lib-suffix=.cross.a
79 LDPATH          = @LDPATH@
80 LDRPATH_INSTALL = @LDRPATH_INSTALL@
81 LDRPATH_LOCAL   = @LDRPATH_LOCAL@
82 INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
83 INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
84 INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
85 INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
86 prog_manext     = 1
87 api_manext      = 3w
88 conf_manext     = 5
89 @SET_MAKE@
90
91 all:
92
93 # End of common header