astyle --options=contrib/utilities/astyle.rc $$f ;\
done
-.PHONY: indent
+cmake:
+ @cd bundled/cmake && make
+ @echo
+ @echo =======================================================
+ @echo
+ @echo "CMake successfully bootstrapped in bundled/cmake"
+ @echo
+ @echo "Please add"
+ @echo " export PATH=\"$(PWD)/bundled/cmake/bin:\$$PATH\""
+ @echo "to your ~/.bashrc file (or similar)."
+ @echo
+ @echo =======================================================
+ @echo
+
+.PHONY: indent cmake
--- /dev/null
+NPROCS:=$(shell grep -c ^processor /proc/cpuinfo)
+ifeq ($(NPROCS), )
+ NPROCS:=1
+endif
+
+bin/cmake:
+ wget -c "http://www.cmake.org/files/v2.8/cmake-2.8.8.tar.gz"
+ tar -xf cmake-2.8.8.tar.gz
+ cd cmake-2.8.8 && ./configure --parallel=$(NPROCS) --prefix="$(PWD)"
+ cd cmake-2.8.8 && make -j $(NPROCS) install
+
+.PHONY: clean
+clean:
+ rm -rf bin cmake-2.8.8 cmake-2.8.8.tar.gz doc man share
+
+all: bin/cmake
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams