OBJS= main.o

LIBS = -lProducer

t : $(OBJS)
	$(CXX) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
