Browse Source

Cleaning directory and adding a README

Yann Weber 8 years ago
parent
commit
fe3ce01965
2 changed files with 32 additions and 0 deletions
  1. 10
    0
      README
  2. 22
    0
      run_autotools.sh

+ 10
- 0
README View File

@@ -0,0 +1,10 @@
1
+TANSIVE : 
2
+	Tests About Natural Selection In Virtual Environment
3
+
4
+Compilation :
5
+	./run_autotools.sh
6
+	./configure && make
7
+
8
+Help :
9
+
10
+	./tansive --help

+ 22
- 0
run_autotools.sh View File

@@ -0,0 +1,22 @@
1
+#!/bin/dash
2
+echo "cleaning directory"
3
+rm depcomp install-sh missing Makefile.in aclocal.m4 configure src/Makefile.in config/config.h.in 2>/dev/null
4
+
5
+if [ $# -eq 1 ]
6
+then
7
+	exit
8
+fi
9
+
10
+echo "Running autotools"
11
+autoheader
12
+automake --foreign -a -c
13
+aclocal
14
+autoconf
15
+echo "cleaning directory"
16
+rm -R autom4te.cache/
17
+rm config.status
18
+rm config.log
19
+rm -R src/.deps
20
+rm Makefile
21
+rm src/Makefile
22
+

Loading…
Cancel
Save