0
0
This commit is contained in:
2021-08-21 20:25:38 +02:00
parent 7d29fa524b
commit 3e92d6c4a6
6 changed files with 88 additions and 35 deletions

9
C_08/git/ex04/main.sh Executable file
View File

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