include config.mk

c-jack: src/main.c
	$(CC) $^ -o $@

%.o: src/%.c
	$(CC) $^ -c

clean:
	rm -f *.o c-jack

.PHONY: clean