Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_posix/sys/src/cmd/unix/drawterm/libdraw/Makefile – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | 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