Add makefile for adduser.

Would a makefile guru please look this over to make sure I did this right?
This commit is contained in:
gclarkii 1994-12-28 07:35:09 +00:00
parent 90e40a4fbb
commit 840e179f52

15
usr.sbin/adduser/Makefile Normal file
View File

@ -0,0 +1,15 @@
STRIP=
PROG= adduser
afterinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m 444 userids /etc
install -c -o ${BINOWN} -g ${BINGRP} -m 444 adduser.conf /etc
cleandir:
clean:
obj:
.include <bsd.prog.mk>