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_fixcpp/sys/src/cmd/unix/drawterm/libmemlayer/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=libmemlayer.a
4
 
5
OFILES=\
6
	draw.$O\
7
	lalloc.$O\
8
	layerop.$O\
9
	ldelete.$O\
10
	lhide.$O\
11
	line.$O\
12
	load.$O\
13
	lorigin.$O\
14
	lsetrefresh.$O\
15
	ltofront.$O\
16
	ltorear.$O\
17
	unload.$O
18
 
19
default: $(LIB)
20
$(LIB): $(OFILES)
21
	$(AR) r $(LIB) $(OFILES)
22
	$(RANLIB) $(LIB)
23
 
24
%.$O: %.c
25
	$(CC) $(CFLAGS) $*.c
26