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

7 lines
156 B
Makefile
Executable File

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