Commit 1d38f756 1d38f756a2757c7a18c250e2047c2370ed17d8dc by Sergey Poznyakoff

Generate errno.h

1 parent 2d8a8942
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) 2000, 2001, 2002, 2003, 3 ## Copyright (C) 2000, 2001, 2002, 2003,
4 ## 2004 Free Software Foundation, Inc. 4 ## 2004, 2005 Free Software Foundation, Inc.
5 ## 5 ##
6 ## GNU Mailutils is free software; you can redistribute it and/or 6 ## GNU Mailutils is free software; you can redistribute it and/or
7 ## modify it under the terms of the GNU General Public License as 7 ## modify it under the terms of the GNU General Public License as
...@@ -17,6 +17,11 @@ ...@@ -17,6 +17,11 @@
17 ## along with GNU Mailutils; if not, write to the Free Software 17 ## along with GNU Mailutils; if not, write to the Free Software
18 ## Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 ## Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 19
20 BUILT_SOURCES=errno.h
21 EXTRA_DIST=errno.hin
22 errno.h: $(top_srcdir)/mailbox/errors errno.hin
23 $(AWK) -f $(top_srcdir)/scripts/generr.awk $^ > $@
24
20 pkginclude_HEADERS = \ 25 pkginclude_HEADERS = \
21 address.h \ 26 address.h \
22 argcv.h \ 27 argcv.h \
...@@ -65,3 +70,4 @@ nobase_pkginclude_HEADERS = \ ...@@ -65,3 +70,4 @@ nobase_pkginclude_HEADERS = \
65 sys/nntp.h \ 70 sys/nntp.h \
66 sys/pop3.h 71 sys/pop3.h
67 SUBDIRS = gnu sys 72 SUBDIRS = gnu sys
73
......