CC=gcc
CFLAGS=-O

OBJS=check.o input.o macro.o main.o make.o reader.o rules.o

make: $(OBJS)
	$(CC) -o make $(OBJS)
