diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-18 20:55:53 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-18 20:55:53 +0000 |
commit | 62c19679be069ef2770e79fb05fdbc3a9749c612 (patch) | |
tree | bbdc0d9152836bab35763618d41fe24d089c34d0 /bin/ksh/Makefile | |
parent | 220f5907de5bdc773b687af762aa5d835e26025c (diff) |
Remove unused OS dependent #ifdef blocks, #defines and macro abstraction.
First step in making the ksh code easier to read. From Matthias Kilian
Diffstat (limited to 'bin/ksh/Makefile')
-rw-r--r-- | bin/ksh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ksh/Makefile b/bin/ksh/Makefile index f94a05d85b6..7faaf9c467d 100644 --- a/bin/ksh/Makefile +++ b/bin/ksh/Makefile @@ -1,12 +1,12 @@ -# $OpenBSD: Makefile,v 1.18 2004/02/16 19:07:19 deraadt Exp $ +# $OpenBSD: Makefile,v 1.19 2004/12/18 20:55:52 millert 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 missing.c path.c shf.c syn.c table.c trap.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 -DEFS= -DHAVE_CONFIG_H -Wall -Wno-unused +DEFS= -Wall -Wno-unused CFLAGS+=${DEFS} -I. -I${.CURDIR} -DKSH MAN= ksh.1 sh.1 |