0
0
This commit is contained in:
2021-08-21 08:34:22 +02:00
parent 50defa6766
commit 800ff7ac31
3 changed files with 77 additions and 0 deletions

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