0
0
This commit is contained in:
Guy Baconniere
2021-08-19 18:28:52 +02:00
parent ca23b5f895
commit 5aa02c94b5
8 changed files with 157 additions and 25 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -e
rm -f a.out
#norminette -R CheckForbiddenSourceHeader
norminette -R CheckForbiddenSourceHeader ft_*.c
gcc -Wall -Wextra -Werror -o a.out ft_*.c main.c
echo $(basename $PWD):
./a.out
rm -f a.out