CFLAGS = -Wall

OBJS = expect.o  getctot.o  openport.o  sendstr.o

all: test

test: libecchat.a test.o

libecchat.a: ${OBJS}
	ar r $@ $?
	ranlib $@

clean:
	rm -f test *.o *.a
