Makefile.config.in revision e6d468f6f77b52e5ccc4592d1024829d8f5cf70b
16d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman#===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===#
26d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman#
36d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman#                     The LLVM Compiler Infrastructure
46d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman#
56d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman# This file was developed by the LLVM research group and is distributed under
66d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman# the University of Illinois Open Source License. See LICENSE.TXT for details.
76d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman# 
86d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman#===------------------------------------------------------------------------===#
97a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell#
107a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# This file is included by Makefile.common.  It defines paths and other
117a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# values specific to a particular installation of LLVM.
12f1dd2004c07126944c9384d25e866215fd93c3bbBrian Gaeke#
136d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman#===------------------------------------------------------------------------===#
147a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
157a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Target operating system for which LLVM will be compiled.
167a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellOS=@OS@
177a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
187659545ceef542dc9951673e1f9085ef2d045699John Criswell# Target hardware architecture
197659545ceef542dc9951673e1f9085ef2d045699John CriswellARCH=@ARCH@
207659545ceef542dc9951673e1f9085ef2d045699John Criswell
210021c31b60706f0a35f0858c112ebdc709f3d3e7John Criswell# Endian-ness of the target
220021c31b60706f0a35f0858c112ebdc709f3d3e7John CriswellENDIAN=@ENDIAN@
230021c31b60706f0a35f0858c112ebdc709f3d3e7John Criswell
247a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Path to the C++ compiler to use.  This is an optional setting, which defaults
257a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# to whatever your gmake defaults to.
267a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell#
277a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Under Linux, for some reason the compiler driver wants to search the PATH to
287a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# find the system assembler, which breaks if the LLVM assembler is in our path.
297a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Hack it to use the assembler in /usr/bin directly.
307a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellCXX = @CXX@
317a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
327a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# We have the same problem with the CC binary, which use used by testcases for
337a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# native builds.
347a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellCC := @CC@
357a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
36f1dd2004c07126944c9384d25e866215fd93c3bbBrian Gaeke# Linker flags.
37b812e76b56f96815c08b850fd688ff835862b22aJohn CriswellLDFLAGS+=@LDFLAGS@
3849bf862719c5ac24ddc9eafa35e51dd68904b1beJohn Criswell
397a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Libraries needed by tools
407a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellTOOLLINKOPTS=@LIBS@
417a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
42f1dd2004c07126944c9384d25e866215fd93c3bbBrian Gaeke# Path to the library archiver program.
437a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellAR_PATH = @AR@
447a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
457a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# The pathnames of the Flex and Bison programs, respectively.
46b8b80c455ff0a7f6147e0fc11f6e2ea3c4a2dfefJohn CriswellYACC     = @YACC@
47b8b80c455ff0a7f6147e0fc11f6e2ea3c4a2dfefJohn CriswellBISON    = @BISON@
487a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellFLEX     = @LEX@
497a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
507a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Paths to miscellaneous programs.
5126be9c5350c9f4cbb3a959b02472264883c49412Brian GaekeRPWD    = pwd
5226be9c5350c9f4cbb3a959b02472264883c49412Brian GaekeSED     = sed
5326be9c5350c9f4cbb3a959b02472264883c49412Brian GaekeRM      = rm
5426be9c5350c9f4cbb3a959b02472264883c49412Brian GaekeECHO    = echo
550057e32730eba044e8a587bf29cddf65236e8840John CriswellMKDIR   = @abs_top_srcdir@/autoconf/mkinstalldirs
5626be9c5350c9f4cbb3a959b02472264883c49412Brian GaekeDATE    = date
5726be9c5350c9f4cbb3a959b02472264883c49412Brian GaekeMV      = mv
587a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellINSTALL = @INSTALL@
597a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellDOT     = @DOT@
607a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellETAGS   = @ETAGS@
61e0cec5d75ad9fc1fd9f6d7d3b23b5b1226c89ea4Brian GaekeETAGSFLAGS = @ETAGSFLAGS@
627a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
637a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Determine the target for which LLVM should generate code.
647a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellLLVMGCCARCH := @target@/3.4-llvm
657a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
66f1dd2004c07126944c9384d25e866215fd93c3bbBrian Gaeke# Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
67f1dd2004c07126944c9384d25e866215fd93c3bbBrian GaekeLCC1 = @LLVMCC1@
68f1dd2004c07126944c9384d25e866215fd93c3bbBrian GaekeLCC1XX = @LLVMCC1PLUS@
69f1dd2004c07126944c9384d25e866215fd93c3bbBrian Gaeke
707a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Path to directory where object files should be stored during a build.
717a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Set OBJ_ROOT to "." if you do not want to use a separate place for
727a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# object files.
737f33695eac684bac5e925cf2039c8f9b001ceb7fJohn CriswellOBJ_ROOT := .
747a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
75b798b1e9a35331933e748262f3920413237ab136Brian Gaeke# Path to location for LLVM C/C++ front-end. You can modify this if you
76b798b1e9a35331933e748262f3920413237ab136Brian Gaeke# want to override the value set by configure.
777a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellLLVMGCCDIR := @LLVMGCCDIR@
787a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
79f1dd2004c07126944c9384d25e866215fd93c3bbBrian Gaeke# When this variable is set to 1, programs in the llvm/test/Programs hierarchy
807a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# are not recompiled from source code.  Instead, the bytecode for the file is
817a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# pulled from the BYTECODE_REPOSITORY directory.  This can be useful when disk
827a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# space is limited or when you just don't want to spend time running the C
837a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# frontend.
847a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell#USE_PRECOMPILED_BYTECODE := 1
857a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell@UPB@
867a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
877a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# This path specifies the cannonical location of bytecode files for compiled
887a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# versions of the test/Programs/* programs.  This is used as the bytecode source
897a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# when USE_PRECOMPILED_BYTECODE is specified or when source code is not
907a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# available for the program (such as SPEC).
917a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellBYTECODE_REPOSITORY := @BCR@
927a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
937a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# SPEC benchmarks:
941e3aba1c19836693ef9477d885d197e22f0043c0Alkis Evlogimenos#	If these are set then run the SPEC benchmarks.
957a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell#	You must provide the SPEC benchmarks on your own.
961e3aba1c19836693ef9477d885d197e22f0043c0Alkis Evlogimenos@USE_SPEC2000@
97b607cc8871bcae21d94775a65c285fe4ac479c75John Criswell@USE_SPEC95@
987a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
991e3aba1c19836693ef9477d885d197e22f0043c0Alkis Evlogimenos# Path to the SPEC benchmarks.
100f3dd0dbc584d66a25e11bca66c6d2e93ac247e27Alkis EvlogimenosSPEC2000_ROOT := @SPEC2000_ROOT@
101b607cc8871bcae21d94775a65c285fe4ac479c75John CriswellSPEC95_ROOT := @SPEC95_ROOT@
1027a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
103b9a131e8a6dbd8f4d7e06267b0a2fa65c816b7faJohn Criswell# Path to the Povray source code.
104b9a131e8a6dbd8f4d7e06267b0a2fa65c816b7faJohn Criswell@USE_POVRAY@
105b9a131e8a6dbd8f4d7e06267b0a2fa65c816b7faJohn CriswellPOVRAY_ROOT := @POVRAY_ROOT@
106b9a131e8a6dbd8f4d7e06267b0a2fa65c816b7faJohn Criswell
1077a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Path to the PAPI code.  This is used by the reoptimizer only.
1087a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell#PAPIDIR := /home/vadve/shared/papi-2.3.4.1
1097a73b80b9052136c8cd2234eb3433a07df7cf38eJohn CriswellPAPIDIR := @PAPIDIR@
1107a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
1117a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# These are options that can either be enabled here, or can be enabled on the
112f1dd2004c07126944c9384d25e866215fd93c3bbBrian Gaeke# make command line (ie, make ENABLE_PROFILING=1):
1137a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
1147a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
1157a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# turned on, and Debug builds are turned off.
1167a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell#ENABLE_OPTIMIZED = 1
1177a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell@ENABLE_OPTIMIZED@
1187a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
1197a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# When ENABLE_PROFILING is enabled, the llvm source base is built with profile
1207a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# information to allow gprof to be used to get execution frequencies.
1217a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell#ENABLE_PROFILING = 1
1227a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
123e9676508acff14a88bd45ef15b024c9b98773a5eMisha Brukman# This option tells the Makefiles to produce verbose output.
1247a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# It essentially prints the commands that make is executing
1257a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell#VERBOSE = 1
1267a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
1277a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Enable JIT for this platform
1287a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell@JIT@
1297a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
1307a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell# Disable LLC diffs for testing.
1317a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell@DISABLE_LLC_DIFFS@
1327a73b80b9052136c8cd2234eb3433a07df7cf38eJohn Criswell
13388aeace3189c214115e5170bcedf1888235c4c08Brian Gaeke# Shared library extension for this platform.
13488aeace3189c214115e5170bcedf1888235c4c08Brian GaekeSHLIBEXT = @SHLIBEXT@
13588aeace3189c214115e5170bcedf1888235c4c08Brian Gaeke
136e6d468f6f77b52e5ccc4592d1024829d8f5cf70bJohn Criswell# Executable file extension for this platform.
137e6d468f6f77b52e5ccc4592d1024829d8f5cf70bJohn CriswellEXEEXT = @EXEEXT@
138e6d468f6f77b52e5ccc4592d1024829d8f5cf70bJohn Criswell
1397f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell###########################################################################
1407f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell# Directory Configuration
1417f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#	This section of the Makefile determines what is where.  To be
1427f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#	specific, there are several locations that need to be defined:
1437f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#
1447f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#	o LLVM_SRC_ROOT  : The root directory of the LLVM source code.
1457f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#	o LLVM_OBJ_ROOT  : The root directory containing the built LLVM code.
1467f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#
1477f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#	o BUILD_SRC_DIR  : The directory containing the code to build.
1487f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#	o BUILD_SRC_ROOT : The root directory of the code to build.
1497f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#
1507f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#	o BUILD_OBJ_DIR  : The directory in which compiled code will be placed.
1517f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#	o BUILD_OBJ_ROOT : The root directory in which compiled code is placed.
1527f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell#
1537f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell###########################################################################
1547f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell
1557f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell# Set the object build directory.  By default, it is the current directory.
1567f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellifndef BUILD_OBJ_DIR
1577f33695eac684bac5e925cf2039c8f9b001ceb7fJohn CriswellBUILD_OBJ_DIR := $(subst //,/,$(shell $(RPWD)))
1587f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellendif
1597f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell
1607f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell# Set the root of the object directory.
1617f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellifndef BUILD_OBJ_ROOT
1627f33695eac684bac5e925cf2039c8f9b001ceb7fJohn CriswellBUILD_OBJ_ROOT := $(subst //,/,$(shell cd $(BUILD_OBJ_DIR)/$(LEVEL); $(RPWD)))
1637f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellendif
1647f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell
1657f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell# Set the source build directory.  That is almost always the current directory.
1667f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellifndef BUILD_SRC_DIR
1677f33695eac684bac5e925cf2039c8f9b001ceb7fJohn CriswellBUILD_SRC_DIR := $(subst //,/,@abs_top_srcdir@/$(patsubst $(BUILD_OBJ_ROOT)%,%,$(BUILD_OBJ_DIR)))
1687f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellendif
1697f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell
1707f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell# Set the source root directory.
1717f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellifndef BUILD_SRC_ROOT
1727f33695eac684bac5e925cf2039c8f9b001ceb7fJohn CriswellBUILD_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
1737f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellendif
1747f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell
1757f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell# Set the LLVM object directory.
1767f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellifndef LLVM_OBJ_ROOT
1777f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellifdef LLVM_SRC_ROOT
1787f33695eac684bac5e925cf2039c8f9b001ceb7fJohn CriswellLLVM_OBJ_ROOT := $(shell cd $(LLVM_SRC_ROOT); $(RPWD))
1797f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellelse
1807f33695eac684bac5e925cf2039c8f9b001ceb7fJohn CriswellLLVM_OBJ_ROOT := $(BUILD_OBJ_ROOT)
1817f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellendif
1827f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellendif
1837f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell
1847f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell# Set the LLVM source directory.
1857f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell# It is typically the root directory of what we're compiling now.
1867f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellifndef LLVM_SRC_ROOT
1877f33695eac684bac5e925cf2039c8f9b001ceb7fJohn CriswellLLVM_SRC_ROOT := $(BUILD_SRC_ROOT)
1887f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswellendif
1897f33695eac684bac5e925cf2039c8f9b001ceb7fJohn Criswell
190613758d55d4cce964f29772c209f7f5540c2760cJohn Criswell# Set SourceDir for backwards compatbility.
191613758d55d4cce964f29772c209f7f5540c2760cJohn Criswellifndef SourceDir
192613758d55d4cce964f29772c209f7f5540c2760cJohn CriswellSourceDir=$(BUILD_SRC_DIR)
193613758d55d4cce964f29772c209f7f5540c2760cJohn Criswellendif
194613758d55d4cce964f29772c209f7f5540c2760cJohn Criswell
1955339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaeke# Installation directories, as provided by the configure script.
1965339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekeexec_prefix = @exec_prefix@
1975339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekeprefix = @prefix@
1985339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekeprogram_transform_name = @program_transform_name@
1995339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekebindir = @bindir@
2005339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekesbindir = @sbindir@
2015339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekelibexecdir = @libexecdir@
2025339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekedatadir = @datadir@
2035339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekesysconfdir = @sysconfdir@
2045339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekesharedstatedir = @sharedstatedir@ 
2055339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekelocalstatedir = @localstatedir@
2065339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekelibdir = @libdir@
2078abff7945a326a9ca1e688273681c7c9ca6df6e3Brian Gaekebytecode_libdir = $(LLVMGCCDIR)/bytecode-libs
2085339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekeincludedir = @includedir@
2095339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekeinfodir = @infodir@
2105339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaekemandir = @mandir@
2115339ada5ab06da024b19d6497aa8f1d74233d4a0Brian GaekeINSTALL_PROGRAM = @INSTALL_PROGRAM@
2125339ada5ab06da024b19d6497aa8f1d74233d4a0Brian GaekeINSTALL_SCRIPT = @INSTALL_SCRIPT@
2135339ada5ab06da024b19d6497aa8f1d74233d4a0Brian GaekeINSTALL_DATA = @INSTALL_DATA@
2145339ada5ab06da024b19d6497aa8f1d74233d4a0Brian Gaeke
215