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