Make.vars.in 3.19 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
# @configure_input@      -*-Makefile-*-

prefix          = @prefix@
exec_prefix     = @exec_prefix@
bindir          = @bindir@
libdir          = @libdir@
datarootdir     = @datarootdir@
datadir         = @datadir@
infodir         = @infodir@
mandir          = @mandir@
fontdir         = $(datadir)/wine/fonts
includedir      = @includedir@/wine
13
dlldir          = @dlldir@
14
fakedlldir      = $(dlldir)/fakedlls
15 16 17
top_srcdir      = @top_srcdir@
top_builddir    = @top_builddir@
srcdir          = @srcdir@
18 19 20 21 22 23 24 25 26 27 28 29 30
SHELL           = /bin/sh
RM              = rm -f
MV              = mv
CC              = @CC@
CROSSCC         = @CROSSCC@
CFLAGS          = @CFLAGS@
CPPFLAGS        = @CPPFLAGS@
EXTRACFLAGS     = @EXTRACFLAGS@
TARGETFLAGS     = @TARGETFLAGS@
LIBS            = @LIBS@
BISON           = @BISON@
FLEX            = @FLEX@
EXEEXT          = @EXEEXT@
31
DLLPREFIX       = @DLLPREFIX@
32 33 34 35 36
TOOLSEXT        = @TOOLSEXT@
DLLTOOL         = @DLLTOOL@
AR              = @AR@
ARFLAGS         = @ARFLAGS@
RANLIB          = @RANLIB@
37
STRIP           = @STRIP@
38
LN_S            = @LN_S@
39
MKDIR_P         = @MKDIR_P@
40 41
TOOLSDIR        = @TOOLSDIR@
LDFLAGS         = @LDFLAGS@
42
DLLFLAGS        = @DLLFLAGS@
43 44 45 46 47
PRELINK         = @PRELINK@
FONTFORGE       = @FONTFORGE@
RSVG            = @RSVG@
CONVERT         = @CONVERT@
ICOTOOL         = @ICOTOOL@
48
MSGFMT          = @MSGFMT@
49
CROSSTARGET     = @CROSSTARGET@
50
LINGUAS         = @LINGUAS@
51
ALL_MO_FILES    = $(LINGUAS:%=@top_builddir@/po/%.mo)
52
PORCFLAGS       = @PORCFLAGS@
53 54 55
BUILDIMAGE      = $(top_srcdir)/tools/buildimage
C2MAN           = $(top_srcdir)/tools/c2man.pl
RUNTEST         = $(top_srcdir)/tools/runtest
56
MAKECTESTS      = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
57
MAKEXFTMPL      = $(TOOLSDIR)/tools/make_xftmpl$(TOOLSEXT)
58 59 60 61 62 63
MAKEDEP         = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
SFNT2FNT        = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
WIDL            = $(TOOLSDIR)/tools/widl/widl$(TOOLSEXT)
WINEBUILD       = $(TOOLSDIR)/tools/winebuild/winebuild$(TOOLSEXT)
WMC             = $(TOOLSDIR)/tools/wmc/wmc$(TOOLSEXT)
WRC             = $(TOOLSDIR)/tools/wrc/wrc$(TOOLSEXT)
64 65 66
LIBPORT         = $(top_builddir)/libs/port/libwine_port.a
LIBWPP          = $(top_builddir)/libs/wpp/libwpp.a
LIBWINE         = -L$(top_builddir)/libs/wine -lwine
67
LIBWINE_STATIC  = $(top_builddir)/libs/wine/libwine_static.a
68 69
WINEGCC         = $(TOOLSDIR)/tools/winegcc/winegcc $(TARGETFLAGS) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(top_builddir) @UNWINDFLAGS@
CROSSWINEGCC    = $(TOOLSDIR)/tools/winegcc/winegcc $(CROSSTARGET:%=-b %) -B$(TOOLSDIR)/tools/winebuild --sysroot=$(top_builddir) --lib-suffix=.cross.a
70
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'
71 72 73 74 75 76
LDRPATH_INSTALL = @LDRPATH_INSTALL@
LDRPATH_LOCAL   = @LDRPATH_LOCAL@
INSTALL         = @INSTALL@ $(INSTALL_FLAGS)
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(INSTALL_PROGRAM_FLAGS)
INSTALL_SCRIPT  = @INSTALL_SCRIPT@ $(INSTALL_SCRIPT_FLAGS)
INSTALL_DATA    = @INSTALL_DATA@ $(INSTALL_DATA_FLAGS)
77
CLEAN_FILES     = *.o *.a *.so *.res *.fake *.ok *.tab.[ch] *.yy.c
78 79 80 81 82 83
prog_manext     = 1
api_manext      = 3w
conf_manext     = 5
@SET_MAKE@

all:
84 85
dummy:
.PHONY: all dummy
86 87

# End of common header