2017-01-30 23:00:51 +00:00
|
|
|
# $NetBSD: Makefile,v 1.56 2016/03/02 19:24:20 christos Exp $
|
1994-05-27 05:00:24 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
1999-09-29 15:18:46 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2016-02-05 21:01:08 +00:00
|
|
|
PACKAGE=clibs
|
1994-05-27 05:00:24 +00:00
|
|
|
LIB= edit
|
2009-07-19 17:25:24 +00:00
|
|
|
SHLIB_MAJOR= 7
|
2003-08-18 15:25:39 +00:00
|
|
|
SHLIBDIR?= /lib
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2017-01-30 22:11:53 +00:00
|
|
|
OSRCS= chared.c common.c el.c eln.c emacs.c fcns.c filecomplete.c help.c \
|
2015-01-09 07:40:56 +00:00
|
|
|
hist.c keymacro.c map.c chartype.c \
|
|
|
|
parse.c prompt.c read.c refresh.c search.c sig.c terminal.c tty.c vi.c
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2014-11-25 11:07:26 +00:00
|
|
|
LIBADD= ncursesw
|
1994-10-12 02:06:02 +00:00
|
|
|
|
2001-03-27 17:27:19 +00:00
|
|
|
MAN= editline.3 editrc.5
|
1997-06-25 08:14:24 +00:00
|
|
|
|
2001-10-01 23:10:48 +00:00
|
|
|
MLINKS= editline.3 el_deletestr.3 editline.3 el_end.3 editline.3 el_init.3 \
|
|
|
|
editline.3 el_get.3 editline.3 el_getc.3 editline.3 el_gets.3 \
|
|
|
|
editline.3 history.3 editline.3 history_end.3 \
|
|
|
|
editline.3 history_init.3 editline.3 el_insertstr.3 \
|
|
|
|
editline.3 el_line.3 editline.3 el_parse.3 editline.3 el_push.3 \
|
|
|
|
editline.3 el_reset.3 editline.3 el_resize.3 editline.3 el_set.3 \
|
2005-08-07 20:55:59 +00:00
|
|
|
editline.3 el_source.3 \
|
|
|
|
editline.3 tok_init.3 editline.3 tok_end.3 editline.3 tok_reset.3 \
|
|
|
|
editline.3 tok_line.3 editline.3 tok_str.3
|
1997-06-25 08:14:24 +00:00
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
# For speed and debugging
|
2011-04-05 18:41:01 +00:00
|
|
|
#SRCS= ${OSRCS}
|
1994-05-27 05:00:24 +00:00
|
|
|
# For protection
|
2011-04-05 18:41:01 +00:00
|
|
|
SRCS= editline.c
|
|
|
|
SRCS+= tokenizer.c history.c readline.c
|
1997-06-25 08:14:24 +00:00
|
|
|
SRCS+= common.h emacs.h fcns.h help.h vi.h
|
2001-10-01 23:10:48 +00:00
|
|
|
CLEANFILES+= common.h editline.c emacs.h fcns.c fcns.h help.c help.h vi.h
|
1997-06-25 08:14:24 +00:00
|
|
|
|
2011-04-05 18:41:01 +00:00
|
|
|
INCS= histedit.h
|
|
|
|
|
2015-01-09 07:40:56 +00:00
|
|
|
SRCS+= tokenizern.c historyn.c
|
|
|
|
CLEANFILES+= tokenizern.c historyn.c
|
|
|
|
CFLAGS+= -I. -I${.CURDIR} -I${.CURDIR}/edit -DWIDECHAR
|
2017-01-30 23:00:51 +00:00
|
|
|
#CFLAGS+= -DDEBUG_TTY -DDEBUG_KEY -DDEBUG_READ -DDEBUG -DDEBUG_REFRESH
|
|
|
|
#CFLAGS+= -DDEBUG_PASTE -DDEBUG_EDIT
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2010-01-02 09:58:07 +00:00
|
|
|
WARNS?= 1
|
|
|
|
|
2011-04-05 18:41:01 +00:00
|
|
|
SUBDIR= edit/readline
|
|
|
|
|
2001-10-01 23:10:48 +00:00
|
|
|
AHDR= vi.h emacs.h common.h
|
|
|
|
ASRC= ${.CURDIR}/vi.c ${.CURDIR}/emacs.c ${.CURDIR}/common.c
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2001-10-01 23:10:48 +00:00
|
|
|
.for hdr in vi emacs common
|
|
|
|
${hdr}.h: ${hdr}.c makelist
|
|
|
|
sh ${.CURDIR}/makelist -h ${.CURDIR}/${hdr}.c > ${.TARGET}
|
|
|
|
.endfor
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
fcns.h: ${AHDR} makelist
|
|
|
|
sh ${.CURDIR}/makelist -fh ${AHDR} > ${.TARGET}
|
|
|
|
|
|
|
|
fcns.c: ${AHDR} fcns.h makelist
|
|
|
|
sh ${.CURDIR}/makelist -fc ${AHDR} > ${.TARGET}
|
|
|
|
|
1995-05-30 05:51:47 +00:00
|
|
|
help.c: ${ASRC} makelist
|
1994-05-27 05:00:24 +00:00
|
|
|
sh ${.CURDIR}/makelist -bc ${ASRC} > ${.TARGET}
|
|
|
|
|
|
|
|
help.h: ${ASRC} makelist
|
|
|
|
sh ${.CURDIR}/makelist -bh ${ASRC} > ${.TARGET}
|
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
editline.c: ${OSRCS}
|
|
|
|
sh ${.CURDIR}/makelist -e ${.ALLSRC:T} > ${.TARGET}
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2015-01-09 07:40:56 +00:00
|
|
|
tokenizern.c: makelist Makefile
|
|
|
|
sh ${.CURDIR}/makelist -n tokenizer.c > ${.TARGET}
|
|
|
|
|
|
|
|
historyn.c: makelist Makefile
|
|
|
|
sh ${.CURDIR}/makelist -n history.c > ${.TARGET}
|
|
|
|
|
2001-10-01 08:41:27 +00:00
|
|
|
# minimal dependency to make "make depend" optional
|
2016-09-24 15:11:27 +00:00
|
|
|
editline.o editline.po editline.pico editline.ln: \
|
2001-10-01 08:41:27 +00:00
|
|
|
common.h emacs.h fcns.c fcns.h help.c help.h vi.h
|
|
|
|
|
2014-07-10 17:52:17 +00:00
|
|
|
tc1.o: ${.CURDIR}/TEST/tc1.c
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2014-07-10 17:52:17 +00:00
|
|
|
test: tc1.o libedit.a ${DPADD} ${LIBTERMCAP}
|
1996-08-30 01:50:07 +00:00
|
|
|
${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} libedit.a ${LDADD}
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|