
CC=cc
CFLAGS = -O2
FLAGS=
LIBS= -lm


OBJS= texpp.o

all:: texpp

texpp: $(OBJS)
	$(CC) $(FLAGS) -o texpp $(OBJS) $(LIBS)

clean:
	rm -f *.o
