diff options
author | Josef Karthauser <joe@FreeBSD.org> | 1999-12-30 13:15:15 +0000 |
---|---|---|
committer | Josef Karthauser <joe@FreeBSD.org> | 1999-12-30 13:15:15 +0000 |
commit | edc2844c9fc4d1c0b4adeaa4c026d725654b3240 (patch) | |
tree | c5818b21c48ee41c7db725e9d4754514dc9be63c /usr.bin/xinstall/Makefile | |
parent | e62764d4eaa1a96f69276bb2a58bcb2853795c97 (diff) |
Moved flags_to_string and string_to_flags into libutil. It's used in
many places nowadays.
Notes
Notes:
svn path=/head/; revision=55270
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r-- | usr.bin/xinstall/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index d21abefd5b3e..eeb6c198c6c6 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -1,9 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $FreeBSD$ PROG= xinstall -SRCS= stat_flags.c xinstall.c +SRCS= xinstall.c MAN1= install.1 -.PATH: ${.CURDIR}/../../bin/ls +LDADD= -lutil install: maninstall ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ |