1# 2# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 3# Use is subject to license terms. 4# 5# ident "%Z%%M% %I% %E% SMI" 6# 7# Makefile for Kerberos client-install utility. 8# 9 10PROG= kclient 11SRCS= kclient.sh 12 13include ../../../Makefile.cmd 14 15POFILE= $(SRCS:%.sh=%.po) 16 17KCLIENTPROG= $(PROG:%=$(KRB5SBIN)/%) 18 19$(KCLIENTPROG) := FILEMODE = 555 20 21.KEEP_STATE: 22 23all: $(PROG) 24 25install: all $(KRB5SBIN) $(KCLIENTPROG) 26 27$(KRB5SBIN): 28 $(INS.dir) 29 30$(KCLIENTPROG)/%: % 31 $(INS.file) 32 33lint: 34 @echo "nothing to lint" 35 36clean: 37 $(RM) $(PROG) 38 39include ../../../Makefile.targ 40