Commit 8c5b6ba0 8c5b6ba08d93793baca77b71ce5779871572fb0a by Sergey Poznyakoff

Added send

1 parent e790c089
...@@ -14,5 +14,6 @@ fmtcheck ...@@ -14,5 +14,6 @@ fmtcheck
14 repl 14 repl
15 whatnow 15 whatnow
16 comp 16 comp
17 send
17 *.output 18 *.output
18 .gdbinit 19 .gdbinit
......
1 ## Process this file with GNU Automake to create Makefile.in 1 ## Process this file with GNU Automake to create Makefile.in
2 2
3 ## Copyright (C) 2001, 2002 Free Software Foundation, Inc. 3 ## Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
4 ## 4 ##
5 ## GNU Mailtuils is free software; you can redistribute it and/or 5 ## GNU Mailtuils is free software; you can redistribute it and/or
6 ## modify it under the terms of the GNU General Public License as 6 ## modify it under the terms of the GNU General Public License as
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
17 ## Foundation, Inc. 17 ## Foundation, Inc.
18 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 19
20 PROGRAMS_MH = scan inc rmm refile mhpath folder rmf fmtcheck repl whatnow comp 20 PROGRAMS_MH = scan inc rmm refile mhpath folder rmf fmtcheck repl whatnow comp send
21 EXTRA_PROGRAMS = scan inc rmm refile mhpath folder rmf fmtcheck repl whatnow comp 21 EXTRA_PROGRAMS = scan inc rmm refile mhpath folder rmf fmtcheck repl whatnow comp send
22 22
23 LIBRARIES_MH = libmh.a 23 LIBRARIES_MH = libmh.a
24 EXTRA_LIBRARIES = libmh.a 24 EXTRA_LIBRARIES = libmh.a
...@@ -57,6 +57,7 @@ fmtcheck_LDADD = $(mh_LIBS) ...@@ -57,6 +57,7 @@ fmtcheck_LDADD = $(mh_LIBS)
57 repl_LDADD = $(mh_LIBS) 57 repl_LDADD = $(mh_LIBS)
58 comp_LDADD = $(mh_LIBS) 58 comp_LDADD = $(mh_LIBS)
59 whatnow_LDADD = $(mh_LIBS) 59 whatnow_LDADD = $(mh_LIBS)
60 send_LDADD = $(mh_LIBS)
60 61
61 AM_YFLAGS=-vt 62 AM_YFLAGS=-vt
62 63
......