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=libmemdraw.a
4
 
5
OFILES=\
6
	alloc.$O\
7
	arc.$O\
8
	cload.$O\
9
	cmap.$O\
10
	cread.$O\
11
	defont.$O\
12
	draw.$O\
13
	ellipse.$O\
14
	fillpoly.$O\
15
	hwdraw.$O\
16
	line.$O\
17
	load.$O\
18
	openmemsubfont.$O\
19
	poly.$O\
20
	read.$O\
21
	string.$O\
22
	subfont.$O\
23
	unload.$O\
24
	write.$O
25
 
26
default: $(LIB)
27
$(LIB): $(OFILES)
28
	$(AR) r $(LIB) $(OFILES)
29
	$(RANLIB) $(LIB)
30
 
31
%.$O: %.c
32
	$(CC) $(CFLAGS) $*.c
33