0
0
Files
42piscine/C_09/git/ex00/libft_creator.sh
Guy Baconniere 886ab5481c sync
2021-08-22 18:10:08 +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