.include "../big5con.mk"

OBJ	= sockface.o getcap.o mem.o font.o coding.o

LIB	= libgon.a

all:	$(LIB)

$(LIB):	$(OBJ)
	ar rc $(LIB) $(OBJ)
	ranlib $(LIB)

depend:
	mkdep $(CFLAGS) *.c

clean:
	rm -f $(OBJ) $(LIB) *~ .depend

install: all

