xref: /plan9/sys/src/cmd/unix/drawterm/libauth/Makefile (revision 8ccd4a6360d974db7bd7bbd4f37e7018419ea908)
1ROOT=..
2include ../Make.config
3
4LIB=libauth.a
5OFILES=\
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
15default: $(LIB)
16$(LIB): $(OFILES)
17	$(AR) r $(LIB) $(OFILES)
18	$(RANLIB) $(LIB)
19
20%.$O: %.c
21	$(CC) $(CFLAGS) $*.c
22
23