diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2005-10-06 06:39:37 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2005-10-06 06:39:37 +0000 |
commit | 65c4205b299c9f25669fee2e37fae88dede57b82 (patch) | |
tree | 4bd1e61bfa82e6136fea29686cb176c30fd229a4 /bin/ksh/Makefile | |
parent | 09ef6f24b12e5f04eef67780b8ee7f3e95c2c9a2 (diff) |
Introducing mknod as a built-in. It might be against the unix
philosophy, but in this case it's worth it. ok deraadt@
Diffstat (limited to 'bin/ksh/Makefile')
-rw-r--r-- | bin/ksh/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/ksh/Makefile b/bin/ksh/Makefile index c89691b695b..f25b597ec60 100644 --- a/bin/ksh/Makefile +++ b/bin/ksh/Makefile @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile,v 1.24 2005/03/30 17:16:37 deraadt Exp $ +# $OpenBSD: Makefile,v 1.25 2005/10/06 06:39:35 otto Exp $ PROG= ksh SRCS= alloc.c c_ksh.c c_sh.c c_test.c c_ulimit.c edit.c emacs.c eval.c \ - exec.c expr.c history.c io.c jobs.c lex.c mail.c main.c misc.c path.c \ - shf.c syn.c table.c trap.c tree.c tty.c var.c version.c vi.c + exec.c expr.c history.c io.c jobs.c lex.c mail.c main.c mknod.c \ + misc.c path.c shf.c syn.c table.c trap.c tree.c tty.c var.c \ + version.c vi.c DEFS= -Wall CFLAGS+=${DEFS} -I. -I${.CURDIR} |