conterm/libdraw/Makefile

25 lines
293 B
Makefile
Raw Normal View History

ROOT=..
include ../Make.config
2005-08-08 16:50:13 +04:00
LIB=libdraw.a
OFILES=\
alloc.$O\
arith.$O\
bytesperline.$O\
chan.$O\
defont.$O\
drawrepl.$O\
icossin.$O\
icossin2.$O\
rectclip.$O\
rgb.$O
2005-11-04 18:47:45 +03:00
default: $(LIB)
2005-08-08 16:50:13 +04:00
$(LIB): $(OFILES)
$(AR) r $(LIB) $(OFILES)
$(RANLIB) $(LIB)
2005-08-08 16:50:13 +04:00
%.$O: %.c
$(CC) $(CFLAGS) $*.c