Commit 5b996c7c 5b996c7c7a989fae5102cfc291bc7a6603004d71 by Sergey Poznyakoff

Build the targets conditionally

1 parent 4edfeeec
......@@ -5,7 +5,9 @@
AUTOMAKE_OPTIONS = ../lib/ansi2knr
INCLUDES =-I$(srcdir) -I$(top_srcdir)/lib -I$(top_srcdir)/include -I$(top_srcdir)/libmu_scm
libexec_PROGRAMS = mail.remote
SMTP_PROGRAMS = mail.remote
EXTRA_PROGRAMS = mail.remote
libexec_PROGRAMS = @SMTP_PROGRAMS@
mail_remote_SOURCES = mail.remote.c
mail_remote_LDADD = ../mailbox/libmailbox.la ../lib/libmailutils.la
......
......@@ -2,8 +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 folder rmf fmtcheck repl
noinst_LIBRARIES = libmh.a
MH_PROGRAMS = scan inc rmm refile mhpath folder rmf fmtcheck repl
EXTRA_PROGRAMS = scan inc rmm refile mhpath folder rmf fmtcheck repl
MH_LIBRARIES = libmh.a
EXTRA_LIBRARIES = libmh.a
bin_PROGRAMS = @MH_PROGRAMS@
noinst_LIBRARIES = @MH_LIBRARIES@
libmh_a_SOURCES= \
mh_argp.c\
mh_ctx.c\
......