CXXFLAGS = $(OPTS) -DCURS_INC=$(CURS_INC)

OBJS = error.o mysystem.o isoconv.o interfac.o welcome.o packet.o \
arealist.o letterl.o letterw.o ansiview.o addrbook.o tagline.o help.o \
main.o

include depend

dep:
	$(CXX) -DCURS_INC=$(CURS_INC) -MM *.cc > depend

clean:
	$(RM) $(OBJS) interfac.a

interfac.a: $(OBJS) 
	ar -r interfac.a $(OBJS)
	$(RANLIB) interfac.a
