1 # $NetBSD: Makefile,v 1.2 2010/02/04 21:01:16 roy Exp $ 2 3 CONFIGFILES= dot.cshrc dot.klogin dot.login dot.profile dot.shrc 4 CONFIGFILES+= dot.terminfo.db dot.terminfo 5 CLEANFILES= dot.terminfo.db 6 7 FILESDIR= /root 8 FILESMODE= 644 9 FILESMODE_dot.klogin= 600 10 .for F in ${CONFIGFILES} 11 FILESNAME_${F}= ${F:S/dot//} 12 .endfor 13 14 CONFIGLINKS= /root/.cshrc /.cshrc \ 15 /root/.profile /.profile 16 17 realall: dot.terminfo.db 18 19 dot.terminfo.db: dot.terminfo 20 ${_MKTARGET_CREATE} 21 ${TOOL_TIC} -x -o "${.OBJDIR}/dot.terminfo" "${.CURDIR}/dot.terminfo" 22 23 24 .include <bsd.prog.mk> 25