Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
ROOT=..
2
include ../Make.config
3
LIB=libdraw.a
4
 
5
OFILES=\
6
	alloc.$O\
7
	arith.$O\
8
	bytesperline.$O\
9
	chan.$O\
10
	defont.$O\
11
	drawrepl.$O\
12
	icossin.$O\
13
	icossin2.$O\
14
	rectclip.$O\
15
	rgb.$O
16
 
17
default: $(LIB)
18
$(LIB): $(OFILES)
19
	$(AR) r $(LIB) $(OFILES)
20
	$(RANLIB) $(LIB)
21
 
22
%.$O: %.c
23
	$(CC) $(CFLAGS) $*.c
24