diff options
Diffstat (limited to 'src/essais')
-rwxr-xr-x | src/essais/compil.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/essais/compil.sh b/src/essais/compil.sh index 18d7681..a867c5a 100755 --- a/src/essais/compil.sh +++ b/src/essais/compil.sh @@ -1,3 +1,4 @@ -gcc -Wall -o test -g -lncurses test.c -gcc -Wall -o test2 -g -lncurses -lpanel test2.c -gcc -Wall -o test3 -g -lncurses -lpanel test3.c +#!/bin/bash +gcc -Wall -o ../../bin/test -g -lncurses test.c +gcc -Wall -o ../../bin/test2 -g -lncurses -lpanel test2.c +gcc -Wall -o ../../bin/test3 -g -lncurses -lpanel test3.c |