Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a configure file and a Makefile to explain we now use cmake.
authornavarrop <navarrop@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 6 Dec 2010 17:44:18 +0000 (17:44 +0000)
committernavarrop <navarrop@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 6 Dec 2010 17:44:18 +0000 (17:44 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9019 48e7efb5-ca39-0410-a469-dd3cf9ba447f

Makefile [new file with mode: 0644]
configure [new file with mode: 0755]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..a7d7400
--- /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=<where_you_want> .\n\tmake\n\tmake install"
+
+clean : all
diff --git a/configure b/configure
new file mode 100755 (executable)
index 0000000..83578a2
--- /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=<where_you_want> .\n\tmake\n\tmake install."