0536e8e6b3
XXX docs are left out for the moment the recover script is also left out, but provided by the older vi The src/usr.bin/nvi directory is not descended into yet, but is otherwise functional
61 lines
2.1 KiB
Makefile
61 lines
2.1 KiB
Makefile
# $NetBSD: Makefile,v 1.1 2008/05/20 18:04:16 aymeric Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
CPPFLAGS+=-I${DIST}/regex -I${DIST}/include -I${.CURDIR} -I. -DGTAGS
|
|
CPPFLAGS+=-D__REGEX_PRIVATE
|
|
WARNS=0
|
|
DBG=-g
|
|
|
|
#CWARNFLAGS+=-Wno-parentheses -Wno-unused -Wno-missing-prototypes
|
|
#.if ${HAVE_GCC} == 4
|
|
#CWARNFLAGS+=-Wno-pointer-sign
|
|
#COPTS+=-fno-strict-aliasing
|
|
#.endif
|
|
|
|
LDADD+= -lcurses
|
|
DPADD+= ${LIBCURSES}
|
|
PROG= nvi
|
|
SRCS= api.c cl_bsd.c cl_funcs.c cl_main.c cl_read.c cl_screen.c cl_term.c \
|
|
conv.c cut.c db.c db1.c delete.c ex.c ex_abbrev.c ex_append.c \
|
|
ex_args.c ex_argv.c ex_at.c ex_bang.c ex_cd.c ex_cmd.c ex_cscope.c \
|
|
ex_delete.c ex_display.c ex_edit.c ex_equal.c ex_file.c ex_filter.c \
|
|
ex_global.c ex_init.c ex_join.c ex_map.c ex_mark.c ex_mkexrc.c \
|
|
ex_move.c ex_open.c ex_perl.c ex_preserve.c ex_print.c ex_put.c \
|
|
ex_quit.c ex_read.c ex_screen.c ex_script.c ex_set.c ex_shell.c \
|
|
ex_shift.c ex_source.c ex_stop.c ex_subst.c ex_tag.c ex_tcl.c \
|
|
ex_txt.c ex_undo.c ex_usage.c ex_util.c ex_version.c ex_visual.c \
|
|
ex_write.c ex_yank.c ex_z.c exf.c getc.c gs.c key.c log.c \
|
|
main.c mark.c msg.c nothread.c options.c options_f.c put.c recover.c \
|
|
screen.c search.c seq.c util.c v_at.c v_ch.c v_cmd.c v_delete.c \
|
|
v_event.c v_ex.c v_increment.c v_init.c v_itxt.c v_left.c v_mark.c \
|
|
v_match.c v_paragraph.c v_put.c v_redraw.c v_replace.c v_right.c \
|
|
v_screen.c v_scroll.c v_search.c v_section.c v_sentence.c v_status.c \
|
|
v_txt.c v_ulcase.c v_undo.c v_util.c v_word.c v_xchar.c v_yank.c \
|
|
v_z.c v_zexit.c vi.c vs_line.c vs_msg.c vs_refresh.c vs_relative.c \
|
|
vs_smap.c vs_split.c
|
|
|
|
SRCS+= regcomp.c regerror.c regexec.c regfree.c
|
|
|
|
LINKS= ${BINDIR}/nvi ${BINDIR}/nex ${BINDIR}/nvi ${BINDIR}/nview
|
|
MLINKS= nvi.1 nex.1 nvi.1 nview.1
|
|
|
|
DPSRCS+=options_def.h
|
|
CLEANFILES+=options_def.h
|
|
|
|
options_def.h: options.awk options.c
|
|
${_MKTARGET_CREATE}
|
|
${AWK} -f ${.ALLSRC} >${.TARGET}
|
|
|
|
.include "../Makefile.inc"
|
|
.include "../../Makefile.inc"
|
|
|
|
.PATH: ${DIST}/vi ${DIST}/ex ${DIST}/cl
|
|
.PATH: ${DIST}/common
|
|
.PATH: ${DIST}/regex
|
|
|
|
nvi.1: ${DIST}/docs/vi.man/vi.1
|
|
cp ${DIST}/docs/vi.man/vi.1 nvi.1
|
|
|
|
.include <bsd.prog.mk>
|