cs240/labs/lab5/task2/Makefile

7 lines
165 B
Makefile
Raw Normal View History

2018-10-15 17:20:57 -04:00
all: sorts
sorts: main.c insert_sort.c select_sort.c
gcc -Werror -Wall -std=c99 -g -o sorts main.c insert_sort.c select_sort.c
clean:
rm -rf sorts *out *.o *txt