Commit fed72faf fed72faf0cd12ee1db7ecbc7df1998cbcea5e957 by Sergey Poznyakoff

Added repl

1 parent 66d125c5
...@@ -11,5 +11,6 @@ refile ...@@ -11,5 +11,6 @@ refile
11 mhpath 11 mhpath
12 folder 12 folder
13 fmtcheck 13 fmtcheck
14 repl
14 *.output 15 *.output
15 .gdbinit 16 .gdbinit
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 # Copyright (C) 2000,2001,2002 Free Software Foundation 2 # Copyright (C) 2000,2001,2002 Free Software Foundation
3 # See file COPYING in the distribution root directory for copying conditions. 3 # See file COPYING in the distribution root directory for copying conditions.
4 4
5 bin_PROGRAMS = scan inc rmm refile mhpath folder rmf fmtcheck 5 bin_PROGRAMS = scan inc rmm refile mhpath folder rmf fmtcheck repl
6 noinst_LIBRARIES = libmh.a 6 noinst_LIBRARIES = libmh.a
7 libmh_a_SOURCES= \ 7 libmh_a_SOURCES= \
8 mh_argp.c\ 8 mh_argp.c\
...@@ -23,6 +23,7 @@ refile_SOURCES = refile.c ...@@ -23,6 +23,7 @@ refile_SOURCES = refile.c
23 mhpath_SOURCES = mhpath.c 23 mhpath_SOURCES = mhpath.c
24 folder_SOURCES = folder.c 24 folder_SOURCES = folder.c
25 fmtcheck_SOURCES = fmtcheck.c 25 fmtcheck_SOURCES = fmtcheck.c
26 repl_SOURCES = repl.c
26 INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib 27 INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib
27 mh_LIBS = ./libmh.a ../mailbox/libmailbox.la ../lib/libmailutils.la 28 mh_LIBS = ./libmh.a ../mailbox/libmailbox.la ../lib/libmailutils.la
28 scan_LDADD = $(mh_LIBS) @CURSES_LIBS@ 29 scan_LDADD = $(mh_LIBS) @CURSES_LIBS@
...@@ -33,6 +34,8 @@ mhpath_LDADD = $(mh_LIBS) ...@@ -33,6 +34,8 @@ mhpath_LDADD = $(mh_LIBS)
33 folder_LDADD = $(mh_LIBS) 34 folder_LDADD = $(mh_LIBS)
34 rmf_LDADD = $(mh_LIBS) 35 rmf_LDADD = $(mh_LIBS)
35 fmtcheck_LDADD = $(mh_LIBS) 36 fmtcheck_LDADD = $(mh_LIBS)
37 repl_LDADD = $(mh_LIBS)
38
36 YFLAGS=-vt 39 YFLAGS=-vt
37 40
38 install-exec-hook: 41 install-exec-hook:
......