Commit c3396f40 c3396f40b0af1cf9c4b82a9513ac06cf3849ec8e by Sergey Poznyakoff

Added fmtcheck

1 parent 7855e386
...@@ -10,5 +10,6 @@ rmf ...@@ -10,5 +10,6 @@ rmf
10 refile 10 refile
11 mhpath 11 mhpath
12 folder 12 folder
13 fmtcheck
13 *.output 14 *.output
14 .gdbinit 15 .gdbinit
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
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 refile mhpath folder rmf 5 bin_PROGRAMS = scan inc rmm refile mhpath folder rmf fmtcheck
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\
...@@ -22,6 +22,7 @@ rmf_SOURCES = rmf.c ...@@ -22,6 +22,7 @@ rmf_SOURCES = rmf.c
22 refile_SOURCES = refile.c 22 refile_SOURCES = refile.c
23 mhpath_SOURCES = mhpath.c 23 mhpath_SOURCES = mhpath.c
24 folder_SOURCES = folder.c 24 folder_SOURCES = folder.c
25 fmtcheck_SOURCES = fmtcheck.c
25 INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib 26 INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/lib
26 mh_LIBS = ./libmh.a ../mailbox/libmailbox.la ../lib/libmailutils.la 27 mh_LIBS = ./libmh.a ../mailbox/libmailbox.la ../lib/libmailutils.la
27 scan_LDADD = $(mh_LIBS) -lcurses -ltermcap 28 scan_LDADD = $(mh_LIBS) -lcurses -ltermcap
...@@ -31,6 +32,7 @@ refile_LDADD = $(mh_LIBS) ...@@ -31,6 +32,7 @@ refile_LDADD = $(mh_LIBS)
31 mhpath_LDADD = $(mh_LIBS) 32 mhpath_LDADD = $(mh_LIBS)
32 folder_LDADD = $(mh_LIBS) 33 folder_LDADD = $(mh_LIBS)
33 rmf_LDADD = $(mh_LIBS) 34 rmf_LDADD = $(mh_LIBS)
35 fmtcheck_LDADD = $(mh_LIBS)
34 YFLAGS=-vt 36 YFLAGS=-vt
35 37
36 install-exec-hook: 38 install-exec-hook:
......