conterm/libauth/Makefile

23 lines
306 B
Makefile
Raw Permalink Normal View History

2005-11-04 18:36:40 +03:00
ROOT=..
include ../Make.config
LIB=libauth.a
OFILES=\
attr.$O\
auth_attr.$O\
auth_challenge.$O\
auth_getuserpasswd.$O\
auth_proxy.$O\
auth_respond.$O\
auth_rpc.$O\
auth_userpasswd.$O\
2005-11-04 18:47:45 +03:00
default: $(LIB)
2005-11-04 18:36:40 +03:00
$(LIB): $(OFILES)
$(AR) r $(LIB) $(OFILES)
$(RANLIB) $(LIB)
%.$O: %.c
$(CC) $(CFLAGS) $*.c