0
0
This commit is contained in:
Guy Baconniere
2021-08-20 10:02:38 +02:00
parent 5aa02c94b5
commit d30270c485
354 changed files with 0 additions and 0 deletions

10
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