makefiles: Rename the SRCDIR, TOPSRCDIR and TOPOBJDIR variables to follow autoconf...
[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 sysconfdir      = @sysconfdir@
12 fontdir         = $(datadir)/wine/fonts
13 includedir      = @includedir@/wine
14 dlldir          = @libdir@/wine
15 fakedlldir      = $(dlldir)/fakedlls
16 top_srcdir      = @top_srcdir@
17 top_builddir    = @top_builddir@
18 srcdir          = @srcdir@
19 VPATH           = @srcdir@
20 SHELL           = /bin/sh
21 RM              = rm -f
22 MV              = mv
23 CC              = @CC@
24 CROSSCC         = @CROSSCC@
25 CFLAGS          = @CFLAGS@
26 CPPFLAGS        = @CPPFLAGS@
27 EXTRACFLAGS     = @EXTRACFLAGS@
28 TARGETFLAGS     = @TARGETFLAGS@
29 LIBS            = @LIBS@
30 BISON           = @BISON@
31 FLEX            = @FLEX@
32 EXEEXT          = @EXEEXT@
33 OBJEXT          = @OBJEXT@
34 LIBEXT          = @LIBEXT@
35 DLLEXT          = @DLLEXT@
36 FAKEEXT         = $(DLLEXT:.so=.fake)
37 TOOLSEXT        = @TOOLSEXT@
38 IMPLIBEXT       = @IMPLIBEXT@
39 DLLTOOL         = @DLLTOOL@
40 DLLWRAP         = @DLLWRAP@
41 AR              = @AR@
42 ARFLAGS         = @ARFLAGS@
43 RANLIB          = @RANLIB@
44 STRIP           = @STRIP@
45 LN_S            = @LN_S@
46 TOOLSDIR        = @TOOLSDIR@
47 LDFLAGS         = @LDFLAGS@
48 PRELINK         = @PRELINK@
49 LINT            = @LINT@
50 LINTFLAGS       = @LINTFLAGS@
51 FONTFORGE       = @FONTFORGE@
52 RSVG            = @RSVG@
53 CONVERT         = @CONVERT@
54 ICOTOOL         = @ICOTOOL@
55 CROSSTARGET     = @CROSSTARGET@
56 CROSSAR         = $(CROSSTARGET)-ar
57 CROSSRANLIB     = $(CROSSTARGET)-ranlib
58 MKINSTALLDIRS   = $(top_srcdir)/tools/mkinstalldirs -m 755
59 WINAPI_CHECK    = $(top_srcdir)/tools/winapi/winapi_check
60 BUILDIMAGE      = $(top_srcdir)/tools/buildimage
61 C2MAN           = $(top_srcdir)/tools/c2man.pl
62 RUNTEST         = $(top_srcdir)/tools/runtest
63 MAKECTESTS      = $(TOOLSDIR)/tools/make_ctests$(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 WINEGCC         = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(top_builddir) @UNWINDFLAGS@
75 CROSSWINEGCC    = $(TOOLSDIR)/tools/winegcc/winegcc $(CROSSTARGET:%=-b %) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(top_builddir) --lib-suffix=.cross.a
76 LDPATH          = @LDPATH@
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@
87
88 all:
89
90 # End of common header