Commit 2bc860b3 2bc860b351c3d5266d392228665dc553d80669fe by Sergey Poznyakoff

Added rmm.c

1 parent 80ae132c
......@@ -2,7 +2,7 @@
# Copyright (C) 2000,2001,2002 Free Software Foundation
# See file COPYING in the distribution root directory for copying conditions.
bin_PROGRAMS = scan inc
bin_PROGRAMS = scan inc rmm
noinst_LIBRARIES = libmh.a
libmh_a_SOURCES= \
mh_argp.c\
......@@ -14,9 +14,11 @@ libmh_a_SOURCES= \
noinst_HEADERS = mh.h mh_getopt.h
scan_SOURCES = scan.c
inc_SOURCES = inc.c
rmm_SOURCES = rmm.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
inc_LDADD = $(mh_LIBS)
rmm_LDADD = $(mh_LIBS)
YFLAGS=-vt
......