.PHONY: all clean
all: 39_heap_base_topk
39_heap_base_topk: 39_heap_base_topk.c
	$(CC) $(CFLAGS) -o $@ $<
clean:
	rm -f 39_heap_base_topk
