0
0
Files
42piscine/C_09/git_old2/ex00/libft_creator.sh
Guy Baconniere b2a5ed52a5 sync
2021-08-26 12:00:00 +02:00

7 lines
106 B
Bash
Executable File

#!/bin/sh
rm -f *.o libft.a
gcc -Wall -Wextra -Werror -c *.c
ar -cq libft.a *.o
#ar -t libft.a
#rm -f *.o