93 lines
3.2 KiB
Makefile
93 lines
3.2 KiB
Makefile
# @configure_input@ -*-Makefile-*-
|
|
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
libdir = @libdir@
|
|
datarootdir = @datarootdir@
|
|
datadir = @datadir@
|
|
infodir = @infodir@
|
|
mandir = @mandir@
|
|
sysconfdir = @sysconfdir@
|
|
fontdir = $(datadir)/wine/fonts
|
|
includedir = @includedir@/wine
|
|
dlldir = @libdir@/wine
|
|
fakedlldir = $(dlldir)/fakedlls
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = @top_builddir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
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@
|
|
OBJEXT = @OBJEXT@
|
|
LIBEXT = @LIBEXT@
|
|
DLLEXT = @DLLEXT@
|
|
FAKEEXT = $(DLLEXT:.so=.fake)
|
|
TOOLSEXT = @TOOLSEXT@
|
|
IMPLIBEXT = @IMPLIBEXT@
|
|
DLLTOOL = @DLLTOOL@
|
|
DLLWRAP = @DLLWRAP@
|
|
AR = @AR@
|
|
ARFLAGS = @ARFLAGS@
|
|
RANLIB = @RANLIB@
|
|
STRIP = @STRIP@
|
|
LN_S = @LN_S@
|
|
TOOLSDIR = @TOOLSDIR@
|
|
LDFLAGS = @LDFLAGS@
|
|
PRELINK = @PRELINK@
|
|
LINT = @LINT@
|
|
LINTFLAGS = @LINTFLAGS@
|
|
FONTFORGE = @FONTFORGE@
|
|
RSVG = @RSVG@
|
|
CONVERT = @CONVERT@
|
|
ICOTOOL = @ICOTOOL@
|
|
CROSSTARGET = @CROSSTARGET@
|
|
LINGUAS = @LINGUAS@
|
|
ALL_PO_FILES = $(LINGUAS:%=@top_srcdir@/po/%.po)
|
|
CROSSAR = $(CROSSTARGET)-ar
|
|
CROSSRANLIB = $(CROSSTARGET)-ranlib
|
|
MKINSTALLDIRS = $(top_srcdir)/tools/mkinstalldirs -m 755
|
|
WINAPI_CHECK = $(top_srcdir)/tools/winapi/winapi_check
|
|
BUILDIMAGE = $(top_srcdir)/tools/buildimage
|
|
C2MAN = $(top_srcdir)/tools/c2man.pl
|
|
RUNTEST = $(top_srcdir)/tools/runtest
|
|
MAKECTESTS = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
|
|
MAKEDEP = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
|
|
RELPATH = $(TOOLSDIR)/tools/relpath$(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)
|
|
LIBPORT = $(top_builddir)/libs/port/libwine_port.a
|
|
LIBWPP = $(top_builddir)/libs/wpp/libwpp.a
|
|
LIBWINE = -L$(top_builddir)/libs/wine -lwine
|
|
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
|
|
LDPATH = @LDPATH@
|
|
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)
|
|
prog_manext = 1
|
|
api_manext = 3w
|
|
conf_manext = 5
|
|
@SET_MAKE@
|
|
|
|
all:
|
|
|
|
# End of common header
|