diff options
author | Ian Darwin <ian@cvs.openbsd.org> | 2003-05-26 18:02:33 +0000 |
---|---|---|
committer | Ian Darwin <ian@cvs.openbsd.org> | 2003-05-26 18:02:33 +0000 |
commit | 9fa95e6a1eb3f1d9e00b51ccf3f046e6badcc7a7 (patch) | |
tree | aa686de4c33bf6c4ce3b61c5b5313c7011db33ca /bin/df/Makefile | |
parent | 3fcb99ebca01fead53557ba5bc81cde5a67564a0 (diff) |
Use prt_scaled from libutil. ok pjanzen@, millert@
Diffstat (limited to 'bin/df/Makefile')
-rw-r--r-- | bin/df/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/df/Makefile b/bin/df/Makefile index f3935e7ba9d..0a79ba29be6 100644 --- a/bin/df/Makefile +++ b/bin/df/Makefile @@ -1,6 +1,8 @@ -# $OpenBSD: Makefile,v 1.7 2003/02/19 08:48:06 tedu Exp $ +# $OpenBSD: Makefile,v 1.8 2003/05/26 18:02:32 ian Exp $ PROG= df SRCS= df.c ffs_df.c ext2fs_df.c +LDADD= -lutil +DPADD= ${LIBUTIL} .include <bsd.prog.mk> |