From ab3b0dcebcadbe3da395e9e8f73aefadb88b3924 Mon Sep 17 00:00:00 2001 From: navarrop Date: Mon, 6 Dec 2010 17:44:18 +0000 Subject: [PATCH] Add a configure file and a Makefile to explain we now use cmake. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9019 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- Makefile | 8 ++++++++ configure | 5 +++++ 2 files changed, 13 insertions(+) create mode 100644 Makefile create mode 100755 configure diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000..a7d7400fca --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +#THIS Makefile should be erase by Cmake when use command "cmake." + +all : + @echo "THIS COMMAND IS NOT AVAILABLE!" + @echo "Since v3.4 we use Cmake. Now use:" + @echo "\tcmake -DCMAKE_INSTALL_PREFIX= .\n\tmake\n\tmake install" + +clean : all diff --git a/configure b/configure new file mode 100755 index 0000000000..83578a2340 --- /dev/null +++ b/configure @@ -0,0 +1,5 @@ +#! /bin/sh + +echo "THIS COMMAND IS NOT AVAILABLE!" +echo "Since v3.4 we use cmake. Now use:" +echo "\tcmake -DCMAKE_INSTALL_PREFIX= .\n\tmake\n\tmake install." -- 2.20.1