0
0
This commit is contained in:
2021-08-20 23:13:19 +02:00
parent 0c39ec556e
commit 50defa6766
4 changed files with 72 additions and 3 deletions

9
C_08/git/ex01/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