2006-09-01 00:20:38 +04:00
|
|
|
# $NetBSD: Makefile,v 1.35 2006/08/31 20:20:38 rpaulo Exp $
|
1994-05-06 10:01:42 +04:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
|
|
|
2002-08-19 18:55:14 +04:00
|
|
|
USE_SHLIBDIR= yes
|
|
|
|
|
2002-03-18 19:20:36 +03:00
|
|
|
WARNS= 3
|
1994-05-06 10:01:42 +04:00
|
|
|
LIB= edit
|
|
|
|
|
2005-05-19 02:36:20 +04:00
|
|
|
LIBDPLIBS= termcap ${.CURDIR}/../libterm
|
|
|
|
|
2005-05-07 20:01:25 +04:00
|
|
|
OSRCS= chared.c common.c el.c emacs.c fcns.c filecomplete.c help.c hist.c \
|
|
|
|
key.c map.c \
|
1997-05-09 11:50:03 +04:00
|
|
|
parse.c prompt.c read.c refresh.c search.c sig.c term.c tty.c vi.c
|
1994-05-06 10:01:42 +04:00
|
|
|
|
1997-01-09 16:12:14 +03:00
|
|
|
MAN= editline.3 editrc.5
|
|
|
|
|
|
|
|
MLINKS= editline.3 el_init.3 editline.3 el_end.3 editline.3 el_reset.3 \
|
|
|
|
editline.3 el_gets.3 editline.3 el_getc.3 editline.3 el_push.3 \
|
1998-07-29 06:26:00 +04:00
|
|
|
editline.3 el_parse.3 editline.3 el_set.3 editline.3 el_get.3 \
|
|
|
|
editline.3 el_source.3 editline.3 el_resize.3 editline.3 el_line.3 \
|
1997-01-09 16:12:14 +03:00
|
|
|
editline.3 el_insertstr.3 editline.3 el_deletestr.3 \
|
2003-12-05 16:37:48 +03:00
|
|
|
editline.3 history_init.3 editline.3 history_end.3 \
|
|
|
|
editline.3 history.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-01-09 16:12:14 +03:00
|
|
|
|
1994-05-06 10:01:42 +04:00
|
|
|
# For speed and debugging
|
1997-11-13 07:43:07 +03:00
|
|
|
#SRCS= ${OSRCS} tokenizer.c history.c readline.c
|
1994-05-06 10:01:42 +04:00
|
|
|
# For protection
|
1997-10-24 02:24:09 +04:00
|
|
|
SRCS= editline.c tokenizer.c history.c readline.c
|
1994-05-06 10:01:42 +04:00
|
|
|
|
1999-07-06 18:10:21 +04:00
|
|
|
LIBEDITDIR?=${.CURDIR}
|
|
|
|
|
2001-01-06 00:15:49 +03:00
|
|
|
INCS= histedit.h
|
1997-03-25 01:11:48 +03:00
|
|
|
INCSDIR=/usr/include
|
|
|
|
|
2003-08-01 21:03:41 +04:00
|
|
|
CLEANFILES+=editline.c
|
2000-08-15 16:01:40 +04:00
|
|
|
CLEANFILES+=common.h.tmp editline.c.tmp emacs.h.tmp fcns.c.tmp fcns.h.tmp
|
|
|
|
CLEANFILES+=help.c.tmp help.h.tmp vi.h.tmp
|
2006-09-01 00:20:38 +04:00
|
|
|
CLEANFILES+=tc1.o tc1
|
1999-07-06 18:10:21 +04:00
|
|
|
CPPFLAGS+=-I. -I${LIBEDITDIR}
|
1999-07-02 19:14:07 +04:00
|
|
|
CPPFLAGS+=-I. -I${.CURDIR}
|
1997-10-23 07:26:27 +04:00
|
|
|
CPPFLAGS+=#-DDEBUG_TTY -DDEBUG_KEY -DDEBUG_READ -DDEBUG -DDEBUG_REFRESH
|
2002-10-28 00:41:50 +03:00
|
|
|
CPPFLAGS+=#-DDEBUG_PASTE -DDEBUG_EDIT
|
1994-05-06 10:01:42 +04:00
|
|
|
|
1999-07-06 18:10:21 +04:00
|
|
|
AHDR=vi.h emacs.h common.h
|
|
|
|
ASRC=${LIBEDITDIR}/vi.c ${LIBEDITDIR}/emacs.c ${LIBEDITDIR}/common.c
|
1994-05-06 10:01:42 +04:00
|
|
|
|
2003-08-01 21:03:41 +04:00
|
|
|
DPSRCS+= ${AHDR} fcns.h help.h fcns.c help.c
|
|
|
|
CLEANFILES+= ${AHDR} fcns.h help.h fcns.c help.c
|
2003-07-31 16:46:00 +04:00
|
|
|
|
2001-01-06 00:15:49 +03:00
|
|
|
SUBDIR= readline
|
|
|
|
|
2005-05-07 20:22:59 +04:00
|
|
|
vi.h: vi.c makelist Makefile
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_CREATE}
|
2003-05-08 17:20:44 +04:00
|
|
|
${HOST_SH} ${LIBEDITDIR}/makelist -h ${LIBEDITDIR}/vi.c \
|
|
|
|
> ${.TARGET}.tmp && \
|
2000-08-15 16:01:40 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1994-05-06 10:01:42 +04:00
|
|
|
|
2005-05-07 20:22:59 +04:00
|
|
|
emacs.h: emacs.c makelist Makefile
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_CREATE}
|
2003-05-08 17:20:44 +04:00
|
|
|
${HOST_SH} ${LIBEDITDIR}/makelist -h ${LIBEDITDIR}/emacs.c \
|
|
|
|
> ${.TARGET}.tmp && \
|
2000-08-15 16:01:40 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1994-05-06 10:01:42 +04:00
|
|
|
|
2005-05-07 20:22:59 +04:00
|
|
|
common.h: common.c makelist Makefile
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_CREATE}
|
2003-05-08 17:20:44 +04:00
|
|
|
${HOST_SH} ${LIBEDITDIR}/makelist -h ${LIBEDITDIR}/common.c \
|
|
|
|
> ${.TARGET}.tmp && \
|
2000-08-15 16:01:40 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1994-05-06 10:01:42 +04:00
|
|
|
|
2005-05-07 20:22:59 +04:00
|
|
|
fcns.h: ${AHDR} makelist Makefile
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_CREATE}
|
2003-05-08 17:20:44 +04:00
|
|
|
${HOST_SH} ${LIBEDITDIR}/makelist -fh ${AHDR} > ${.TARGET}.tmp && \
|
2000-08-15 16:01:40 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1994-05-06 10:01:42 +04:00
|
|
|
|
2005-05-07 20:22:59 +04:00
|
|
|
fcns.c: ${AHDR} fcns.h help.h makelist Makefile
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_CREATE}
|
2003-05-08 17:20:44 +04:00
|
|
|
${HOST_SH} ${LIBEDITDIR}/makelist -fc ${AHDR} > ${.TARGET}.tmp && \
|
2000-08-15 16:01:40 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1994-05-06 10:01:42 +04:00
|
|
|
|
2005-05-07 20:22:59 +04:00
|
|
|
help.c: ${ASRC} makelist Makefile
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_CREATE}
|
2003-05-08 17:20:44 +04:00
|
|
|
${HOST_SH} ${LIBEDITDIR}/makelist -bc ${ASRC} > ${.TARGET}.tmp && \
|
2000-08-15 16:01:40 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1994-05-06 10:01:42 +04:00
|
|
|
|
2005-05-07 20:22:59 +04:00
|
|
|
help.h: ${ASRC} makelist Makefile
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_CREATE}
|
2003-05-08 17:20:44 +04:00
|
|
|
${HOST_SH} ${LIBEDITDIR}/makelist -bh ${ASRC} > ${.TARGET}.tmp && \
|
2000-08-15 16:01:40 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1994-05-06 10:01:42 +04:00
|
|
|
|
2005-05-07 20:22:59 +04:00
|
|
|
editline.c: ${OSRCS} makelist Makefile
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_CREATE}
|
2005-05-07 20:22:59 +04:00
|
|
|
${HOST_SH} ${LIBEDITDIR}/makelist -e ${OSRCS:T} > ${.TARGET}.tmp && \
|
2000-08-15 16:01:40 +04:00
|
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
1999-07-02 19:14:07 +04:00
|
|
|
|
2006-09-01 00:20:38 +04:00
|
|
|
tc1.o: ${LIBEDITDIR}/TEST/tc1.c
|
1999-07-06 18:10:21 +04:00
|
|
|
|
2006-09-01 00:20:38 +04:00
|
|
|
tc1: libedit.a tc1.o
|
2005-05-28 15:55:30 +04:00
|
|
|
${_MKTARGET_LINK}
|
1997-10-23 07:26:27 +04:00
|
|
|
${CC} ${LDFLAGS} ${.ALLSRC} -o ${.TARGET} libedit.a ${LDADD} -ltermcap
|
1994-05-06 10:01:42 +04:00
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|
2001-01-06 00:15:49 +03:00
|
|
|
.include <bsd.subdir.mk>
|