Edit

IABSD.fr/src/bin/ksh/Makefile

Branch :

  • Show log

    Commit

  • Author : millert
    Date : 2018-06-18 17:03:58
    Hash : a3c80d85
    Message : Add clear-screen emacs editing command, currently not bound to a key by default. The shell will query the terminfo database to find the escape sequence to clear the screen. OK deraadt@

  • bin/ksh/Makefile
  • #	$OpenBSD: Makefile,v 1.39 2018/06/18 17:03:58 millert Exp $
    
    PROG=	ksh
    DPADD+=	${LIBCURSES}
    LDADD+=	-lcurses
    
    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
    
    WARNINGS=yes
    DEFS=	-DEMACS -DVI
    CFLAGS+=${DEFS} -I. -I${.CURDIR} -I${.CURDIR}/../../lib/libc/gen
    MAN=	ksh.1 sh.1
    
    LINKS=	${BINDIR}/ksh ${BINDIR}/rksh
    LINKS+=	${BINDIR}/ksh ${BINDIR}/sh
    
    .include <bsd.prog.mk>