
CC = clang
CFLAGS = -Wall -Werror

all: gen heapSort

gen: gen.c
heapSort: heapSort.c

clean:
	rm -f gen heapSort

