
test: test.c src/commander.c
	$(CC) $^ -std=c99 -o $@

clean:
	rm -f test

.PHONY: clean