[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / mg

Annotation of src/usr.bin/mg/Makefile, Revision 1.20

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