1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
## --*- Makefile -*--
SUBDIRS :=
## helper utilities ..
INSTALL = @INSTALL@
MKDIR = @MKDIR@
RM = @RM@ -r -f
RMF = @RMF@
TAR = @TAR@
TOUCH = @TOUCH@
CHMOD = @CHMOD@
SED = @SED@
GREP = @GREP@
CAT = @CAT@
CHMOD = @CHMOD@
CP = @CP@
ECHO = @ECHO@
# usual dribble
exec_prefix = @exec_prefix@
prefix = @prefix@
program_transform_name = @program_transform_name@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
includedir = @includedir@
oldincludedir = @oldincludedir@
infodir = @infodir@
mandir = @mandir@
build_alias = @build_alias@
host_alias = @host_alias@
target_alias = @target_alias@
build = @build@
build_cpu = @build_cpu@
build_vendor = @build_vendor@
build_os = @build_os@
host = @host@
host_cpu = @host_cpu@
host_vendor = @host_vendor@
host_os = @host_os@
just_make = @just_make@
# Version stuff...
VERSION = @VERSION@
SUBVERSION = @SUBVERSION@
PATCHLEVEL = @PATCHLEVEL@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
versioneddir = @PACKAGE_NAME@-@PACKAGE_VERSION@
# navigation
builddir = @abs_this_builddir@
buildtree = @abs_this_builddir@
sourcetree = @abs_top_srcdir@
## Two abbrevs to shorten things. $(thisdir) shall be the current
## working directory as absolute name and $(_srcdir) is it's
## source dir companion. That means that $(thisdir)/Makefile has
## been generated by $(_srcdir)/Makefile.in.
_srcdir = @abs_top_srcdir@/$(subdir)
thisdir = @abs_this_builddir@/$(subdir)
# variable 'srcdir' is deprecated - use sourcetree
srcdir = @abs_top_srcdir@
# variable 'objdir' is deprecated - use buildtree
objdir = @abs_this_builddir@
# other
verbose = @VERBOSE@
## SUBDIRS you want to exclude (separate them by using "|").
SUBDIRS_NOT := .
CLR = @CLR@
ANTLR_JAR = @ANTLR_JAR@
ANTLR_LIB = @ANTLR_LIB@
ANTLR_NET = @ANTLR_NET@
ANTLR_PY = @ANTLR_PY@
ASTFRAME_NET = @ASTFRAME_NET@
antlr_jar = @antlr_jar@
antlr_lib = @antlr_lib@
antlr_net = @antlr_net@
antlr_py = @antlr_py@
astframe_net = @astframe_net@
|