1# $OpenBSD: Makefile,v 1.22 2008/12/17 10:27:33 sobrado Exp $ 2 3PROG= mg 4 5LDADD+= -lcurses 6DPADD+= ${LIBCURSES} 7 8# (Common) compile-time options: 9# 10# FKEYS -- add support for function key sequences. 11# REGEX -- create regular expression functions. 12# STARTUP -- look for and handle initialization file. 13# XKEYS -- use termcap function key definitions. 14# note: XKEYS and bsmap mode do _not_ get along. 15# 16CFLAGS+=-Wall -DFKEYS -DREGEX -DXKEYS 17 18SRCS= autoexec.c basic.c buffer.c cinfo.c dir.c dired.c display.c \ 19 echo.c extend.c file.c fileio.c funmap.c help.c kbd.c keymap.c \ 20 line.c macro.c main.c match.c modes.c paragraph.c random.c \ 21 re_search.c region.c search.c spawn.c tty.c ttyio.c ttykbd.c \ 22 undo.c version.c window.c word.c yank.c 23 24# 25# More or less standalone extensions. 26# 27SRCS+= cmode.c grep.c theo.c 28 29.include <bsd.prog.mk> 30