Commit 26a6bbb0 26a6bbb0338dbceb12283dbdf7b086b9afeff60d by Sergey Poznyakoff

Added new modules.

1 parent 889a87a2
...@@ -2,23 +2,27 @@ ...@@ -2,23 +2,27 @@
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 5 bin_PROGRAMS = scan inc rmm refile
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\
9 mh_ctx.c\
9 mh_getopt.c\ 10 mh_getopt.c\
10 mh_error.c\ 11 mh_error.c\
11 mh_format.c\ 12 mh_format.c\
12 mh_init.c\ 13 mh_init.c\
13 mh_fmtgram.y 14 mh_fmtgram.y\
15 mh_msgset.c
14 noinst_HEADERS = mh.h mh_getopt.h 16 noinst_HEADERS = mh.h mh_getopt.h
15 scan_SOURCES = scan.c 17 scan_SOURCES = scan.c
16 inc_SOURCES = inc.c 18 inc_SOURCES = inc.c
17 rmm_SOURCES = rmm.c 19 rmm_SOURCES = rmm.c
20 refile_SOURCES = refile.c
18 INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib 21 INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib
19 mh_LIBS = ./libmh.a ../mailbox/libmailbox.la ../lib/libmailutils.la 22 mh_LIBS = ./libmh.a ../mailbox/libmailbox.la ../lib/libmailutils.la
20 scan_LDADD = $(mh_LIBS) -lcurses -ltermcap 23 scan_LDADD = $(mh_LIBS) -lcurses -ltermcap
21 inc_LDADD = $(mh_LIBS) 24 inc_LDADD = $(mh_LIBS)
22 rmm_LDADD = $(mh_LIBS) 25 rmm_LDADD = $(mh_LIBS)
26 refile_LDADD = $(mh_LIBS)
23 YFLAGS=-vt 27 YFLAGS=-vt
24 28
......