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

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

1.22    ! sobrado     1: # $OpenBSD: Makefile,v 1.21 2008/06/13 18:51:02 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: #
1.3       millert    10: #      FKEYS           -- add support for function key sequences.
1.22    ! sobrado    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.
1.1       deraadt    15: #
1.22    ! sobrado    16: CFLAGS+=-Wall -DFKEYS -DREGEX -DXKEYS
1.2       deraadt    17:
1.22    ! sobrado    18: SRCS=  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
1.8       art        23:
                     24: #
                     25: # More or less standalone extensions.
                     26: #
1.22    ! sobrado    27: SRCS+= cmode.c grep.c theo.c
1.1       deraadt    28:
1.2       deraadt    29: .include <bsd.prog.mk>