1f1979ea2c
whose version has not already been bumped since RELENG_5 are being bumped. Revisions of files being MFC-ed: > Path Revision > src/gnu/lib/libdialog/Makefile 1.43 > src/gnu/lib/libg2c/Makefile 1.16 > src/gnu/lib/libobjc/Makefile 1.27 > src/gnu/lib/libreadline/Makefile.inc 1.12 > src/gnu/lib/libregex/Makefile 1.32 > src/gnu/lib/libstdc++/Makefile 1.56 > src/kerberos5/lib/Makefile.inc 1.7 > src/lib/Makefile.inc 1.3 > src/lib/libalias/Makefile 1.31 > src/lib/libarchive/Makefile 1.37 > src/lib/libbegemot/Makefile 1.3 > src/lib/libbluetooth/Makefile 1.2 > src/lib/libbsnmp/Makefile.inc 1.6 > src/lib/libbz2/Makefile 1.6 > src/lib/libc_r/Makefile 1.42 > src/lib/libcrypt/Makefile 1.36 > src/lib/libdevstat/Makefile 1.15 > src/lib/libdevstat/devstat.h 1.11 > src/lib/libedit/Makefile 1.29 > src/lib/libexpat/Makefile 1.5 > src/lib/libfetch/Makefile 1.45 > src/lib/libftpio/Makefile 1.14 > src/lib/libgpib/Makefile 1.2 > src/lib/libipsec/Makefile 1.17 > src/lib/libkiconv/Makefile 1.3 > src/lib/libmagic/Makefile 1.7 > src/lib/libmp/Makefile 1.10 > src/lib/libncp/Makefile 1.6 > src/lib/libncurses/Makefile 1.79 > src/lib/libnetgraph/Makefile 1.11 > src/lib/libngatm/Makefile 1.6 > src/lib/libopie/Makefile 1.21 > src/lib/libpam/Makefile.inc 1.17 > src/lib/libpthread/Makefile 1.54 > src/lib/libradius/Makefile 1.12 > src/lib/libsdp/Makefile 1.4 > src/lib/libsmb/Makefile 1.8 > src/lib/libtacplus/Makefile 1.7 > src/lib/libthr/Makefile 1.14 > src/lib/libthread_db/Makefile 1.6 > src/lib/libugidfw/Makefile 1.7 > src/lib/libusbhid/Makefile 1.10 > src/lib/libutil/Makefile 1.57 > src/lib/libvgl/Makefile 1.11 > src/lib/libwrap/Makefile 1.17 > src/lib/libypclnt/Makefile 1.13 > src/lib/msun/Makefile 1.72 > src/secure/lib/libcrypto/Makefile 1.74 > src/secure/lib/libssh/Makefile 1.35 > src/secure/lib/libssl/Makefile 1.22 > src/usr.sbin/bsnmpd/modules/Makefile.inc 1.10 Reviewed by: ru Approved by: re (scottl)
69 lines
2.0 KiB
Makefile
69 lines
2.0 KiB
Makefile
# $NetBSD: Makefile,v 1.19 2000/08/15 12:01:40 mrg Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
# $FreeBSD$
|
|
|
|
LIB= edit
|
|
SHLIB_MAJOR= 5
|
|
SHLIBDIR?= /lib
|
|
|
|
OSRCS= chared.c common.c el.c emacs.c fcns.c help.c hist.c key.c map.c \
|
|
parse.c prompt.c read.c refresh.c search.c sig.c term.c tty.c vi.c
|
|
|
|
DPADD= ${LIBNCURSES}
|
|
LDADD= -lncurses
|
|
|
|
MAN= editline.3 editrc.5
|
|
|
|
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 \
|
|
editline.3 el_source.3
|
|
|
|
# For speed and debugging
|
|
#SRCS= ${OSRCS} tokenizer.c history.c
|
|
# For protection
|
|
SRCS= editline.c tokenizer.c history.c
|
|
SRCS+= common.h emacs.h fcns.h help.h vi.h
|
|
CLEANFILES+= common.h editline.c emacs.h fcns.c fcns.h help.c help.h vi.h
|
|
|
|
CFLAGS+= -I. -I${.CURDIR}
|
|
CFLAGS+= #-DDEBUG_TTY -DDEBUG_KEY -DDEBUG_READ -DDEBUG -DDEBUG_REFRESH
|
|
CFLAGS+= #-DDEBUG_PASTE
|
|
|
|
AHDR= vi.h emacs.h common.h
|
|
ASRC= ${.CURDIR}/vi.c ${.CURDIR}/emacs.c ${.CURDIR}/common.c
|
|
|
|
.for hdr in vi emacs common
|
|
${hdr}.h: ${hdr}.c makelist
|
|
sh ${.CURDIR}/makelist -h ${.CURDIR}/${hdr}.c > ${.TARGET}
|
|
.endfor
|
|
|
|
fcns.h: ${AHDR} makelist
|
|
sh ${.CURDIR}/makelist -fh ${AHDR} > ${.TARGET}
|
|
|
|
fcns.c: ${AHDR} fcns.h makelist
|
|
sh ${.CURDIR}/makelist -fc ${AHDR} > ${.TARGET}
|
|
|
|
help.c: ${ASRC} makelist
|
|
sh ${.CURDIR}/makelist -bc ${ASRC} > ${.TARGET}
|
|
|
|
help.h: ${ASRC} makelist
|
|
sh ${.CURDIR}/makelist -bh ${ASRC} > ${.TARGET}
|
|
|
|
editline.c: ${OSRCS}
|
|
sh ${.CURDIR}/makelist -e ${.ALLSRC:T} > ${.TARGET}
|
|
|
|
# minimal dependency to make "make depend" optional
|
|
editline.o editline.po editline.So editline.ln: \
|
|
common.h emacs.h fcns.c fcns.h help.c help.h vi.h
|
|
|
|
test.o: ${.CURDIR}/TEST/test.c
|
|
|
|
test: test.o libedit.a ${DPADD} ${LIBTERMCAP}
|
|
${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} libedit.a ${LDADD}
|
|
|
|
.include <bsd.lib.mk>
|