cs240/labs/lab5/task2/Makefile
2018-10-15 17:20:57 -04:00

7 lines
165 B
Makefile
Executable File

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