diff options
author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-05-27 12:33:43 +0000 |
---|---|---|
committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1994-05-27 12:33:43 +0000 |
commit | 9b50d9027575220cb6dd09b3e62f03f511e908b8 (patch) | |
tree | defc987843071f19a5891a97145437d43cba2af8 /usr.bin/xinstall/Makefile | |
parent | efd31c5952bb9bb2485c109382100127424f8611 (diff) |
BSD 4.4 Lite Usr.bin Sources
Notes
Notes:
svn path=/cvs2svn/branches/CHRISTOS/; revision=1590
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r-- | usr.bin/xinstall/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile new file mode 100644 index 000000000000..69de3ab13bd7 --- /dev/null +++ b/usr.bin/xinstall/Makefile @@ -0,0 +1,12 @@ +# @(#)Makefile 8.1 (Berkeley) 6/6/93 + +PROG= xinstall +SRCS= stat_flags.c xinstall.c +MAN1= install.0 +.PATH: ${.CURDIR}/../../bin/ls + +install: maninstall + install ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${PROG} ${DESTDIR}${BINDIR}/install + +.include <bsd.prog.mk> |