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
 
4
LIB=libauth.a
5
OFILES=\
6
	attr.$O\
7
	auth_attr.$O\
8
	auth_challenge.$O\
9
	auth_getuserpasswd.$O\
10
	auth_proxy.$O\
11
	auth_respond.$O\
12
	auth_rpc.$O\
13
	auth_userpasswd.$O\
14
 
15
default: $(LIB)
16
$(LIB): $(OFILES)
17
	$(AR) r $(LIB) $(OFILES)
18
	$(RANLIB) $(LIB)
19
 
20
%.$O: %.c
21
	$(CC) $(CFLAGS) $*.c
22