0
0
Files
42piscine/C_09/git/ex02/main.sh
2021-08-25 22:25:54 +02:00

11 lines
268 B
Bash
Executable File

#!/bin/sh
set -e
rm -f a.out
#norminette -R CheckForbiddenSourceHeader ft_*.c
norminette -R CheckForbiddenSourceHeader
#gcc -Wall -Wextra -Werror -fsanitize=address -g -o a.out *.c
gcc -Wall -Wextra -Werror -o a.out *.c
echo $(basename $PWD):
./a.out "$@"
rm -f a.out