0
0
Files
42piscine/C_02/tests_C02/main.sh

9 lines
167 B
Bash
Raw Normal View History

2021-08-15 23:24:04 +02:00
#!/bin/sh
test=$1
set -e
norminette -R CheckForbiddenSourceHeader ../$test/ft_*.c
gcc -Wall -Wextra -Werror -o a.out $test.c
#gcc -o a.out $test.c
./a.out
rm -f a.out