diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-16 19:15:21 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-05-16 19:15:21 (GMT) |
commit | 1cd9ce6f6e0597f6a4a0436285a67d979b03655c (patch) | |
tree | 1ce4055b5fd3b1eb6e80e419f4b29a574407512a /Source/Makefile.in | |
parent | a5480276d5782f2bcc8d44cf4c5cbf29b980a1f0 (diff) | |
download | CMake-1cd9ce6f6e0597f6a4a0436285a67d979b03655c.zip CMake-1cd9ce6f6e0597f6a4a0436285a67d979b03655c.tar.gz CMake-1cd9ce6f6e0597f6a4a0436285a67d979b03655c.tar.bz2 |
ENH: unify make process on unix
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 \ |