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