Commit 64a86669 64a8666958236ce7a48d7acfa5b879374e898aa2 by Sergey Poznyakoff

Added folder.c an mh_global.c

1 parent 77828c25
......@@ -2,12 +2,13 @@
# Copyright (C) 2000,2001,2002 Free Software Foundation
# See file COPYING in the distribution root directory for copying conditions.
bin_PROGRAMS = scan inc rmm refile mhpath
bin_PROGRAMS = scan inc rmm refile mhpath folder
noinst_LIBRARIES = libmh.a
libmh_a_SOURCES= \
mh_argp.c\
mh_ctx.c\
mh_getopt.c\
mh_global.c\
mh_error.c\
mh_format.c\
mh_init.c\
......@@ -19,6 +20,7 @@ inc_SOURCES = inc.c
rmm_SOURCES = rmm.c
refile_SOURCES = refile.c
mhpath_SOURCES = mhpath.c
folder_SOURCES = folder.c
INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib
mh_LIBS = ./libmh.a ../mailbox/libmailbox.la ../lib/libmailutils.la
scan_LDADD = $(mh_LIBS) -lcurses -ltermcap
......@@ -26,5 +28,6 @@ inc_LDADD = $(mh_LIBS)
rmm_LDADD = $(mh_LIBS)
refile_LDADD = $(mh_LIBS)
mhpath_LDADD = $(mh_LIBS)
folder_LDADD = $(mh_LIBS)
YFLAGS=-vt
......