cs240/labs/lab5/task1/Makefile

7 lines
156 B
Makefile
Raw Normal View History

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