tests	=	test1
CFLAGS	=	-Wall -g
CC	=	gcc

all:	$(tests) check

test1:		test1.o stack.o
test1.o:	bool.h stack.h
stack.o:	bool.h stack.h

clean:
	rm -f *.o $(tests)

check:	$(tests)
	./checker $(tests)
