0
0
This commit is contained in:
2021-08-18 08:58:13 +02:00
parent 8a4d0c604e
commit 42ec1c77f8
10 changed files with 206 additions and 0 deletions

10
C_Piscine_C_05/ex.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
set -e
ex=${1:?$0 <ex??>}
rm -f a.out
norminette -R CheckForbiddenSourceHeader ../${ex}/ft_*.c
#gcc ${ex}.c
gcc -Wall -Wextra -Werror -o a.out ${ex}.c
echo ${ex}:
./a.out "$@"
rm -f a.out