all: test
	./test

clean:
	rm -f test

test: test.c balanced.c
	gcc -o $@ $^

.PHONY: all clean
