include ../define.mk

OBJS = write.o 

all: lib.a

lib.a:	$(OBJS)
	$(AR) rcs lib.a $(OBJS)


clean:
	rm -f *.o *.a
