diff options
Diffstat (limited to 'Source/Makefile.in')
-rw-r--r-- | Source/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/Makefile.in b/Source/Makefile.in index 5f868bc..19abbb0 100644 --- a/Source/Makefile.in +++ b/Source/Makefile.in @@ -1,15 +1,15 @@ - srcdir = @srcdir@ VPATH = @srcdir@ -# DO NOT INCLUDE CMakeMaster.make here! -# This will cause an infinite loop as it will add the -# command for changing into this directory +CMAKE_CONFIG_DIR = @CMAKE_CONFIG_DIR@ +CXX = @CXX@ +CXXFLAGS = @CXXFLAGS@ -DCMAKE_HAS_AUTOCONF -I${CMAKE_CONFIG_DIR}/CMake/Source + +.SUFFIXES: .cxx .java .class + +.cxx.o: + ${CXX} ${CXXFLAGS} -c $< -o $@ -# let cmake know that this was done with autoconf -KIT_FLAGS = -DCMAKE_HAS_AUTOCONF -I${CMAKE_CONFIG_DIR}/CMake/Source -include @CMAKE_CONFIG_DIR@/CMake/CMakeVariables.make -include @CMAKE_CONFIG_DIR@/CMake/CMakeSimpleRules.make OBJS = \ CMakeBuildTargets.o \ |