9 lines
167 B
Bash
Executable File
9 lines
167 B
Bash
Executable File
#!/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
|