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/chflags | |
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/chflags')
-rw-r--r-- | usr.bin/chflags/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/chflags/Makefile b/usr.bin/chflags/Makefile index d05ff81f8a1f..d96c99c58084 100644 --- a/usr.bin/chflags/Makefile +++ b/usr.bin/chflags/Makefile @@ -1,10 +1,11 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 +# $FreeBSD$ NOSHARED?=yes PROG= chflags CFLAGS+=-Wall -SRCS= chflags.c stat_flags.c -.PATH: ${.CURDIR}/../../bin/ls +SRCS= chflags.c +LDADD= -lutil .include <bsd.prog.mk> |