OSDN Git Service

235f3c73708f7958185c5e228c1394a97991c7e6
[ccunit/ccunit.git] / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 ##    Copyright (C) 2003 TSUTSUMI Kikuo.
3 ##    This file is part of the CCUnit Library.
4
5 ##    The CCUnit Library is free software; you can redistribute it and/or
6 ##    modify it under the terms of the GNU Lesser General Public License
7 ##    as published by the Free Software Foundation; either version 2.1 of
8 ##    the License, or (at your option) any later version.
9
10 ##    The CCUnit Library is distributed in the hope that it will be
11 ##    useful, but WITHOUT ANY WARRANTY; without even the implied warranty
12 ##    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ##    GNU Lesser General Public License for more details.
14
15 ##    You should have received a copy of the GNU Lesser General Public
16 ##    License along with the CCUnit Library; see the file COPYING.LESSER.
17 ##    If not, write to the Free Software Foundation, Inc., 59 Temple
18 ##    Place - Suite 330, Boston, MA 02111-1307, USA.  
19
20 # $Id$
21
22 ACLOCAL_AMFLAGS = -I config
23
24 SUBDIRS=. src tests examples
25 DIST_SUBDIRS= $(SUBDIRS) doc
26 AM_CFLAGS=-I$(top_srcdir)/src -Wall -Werror
27 AM_LDFLAGS=-L$(top_srcdir)/src/ccunit
28 CLEANFILES=*~ .*~ ./\#*\# *.log configure.scan *.tar.gz *.tar.bz2 *.zip \
29         config/*~ config/.*~
30
31 EXTRA_DIST = BUGS ChangeLog ChangeLog.0 \
32         config/arg_with_doxygen.m4 \
33         config/ac_create_prefix_config_h.m4 \
34         config/arg_enable_coverage.m4
35
36 docs:
37         cd doc; $(MAKE) docs
38
39 distdocdir=$(PACKAGE)-$(VERSION)-doc
40
41 dist-docs: distdocdir
42         cd doc; $(MAKE) dist-docs
43         $(AMTAR) chof - $(distdocdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdocdir).tar.gz
44         $(AMTAR) chof - $(distdocdir) | bzip2 -9 -c >$(distdocdir).tar.bz2
45         -rm -f $(distdocdir).zip
46         zip -rq $(distdocdir).zip $(distdocdir)
47         { test ! -d $(distdocdir) \
48           || { find $(distdocdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
49                 && rm -fr $(distdocdir); }; }
50
51 distdocdir: docs
52         { test ! -d $(distdocdir) \
53           || { find $(distdocdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
54                 && rm -fr $(distdocdir); }; }
55         mkdir $(distdocdir)
56         $(mkinstalldirs) $(distdocdir)/html
57
58 uploadhp: docs
59         set -x
60         tar czf /tmp/html.tar.gz -C doc/html .
61         tar czf /tmp/jahtml.tar.gz -C doc/ja/html .
62         scp /tmp/html.tar.gz tsutsumi@shell.sourceforge.jp:html.tar.gz
63         scp /tmp/jahtml.tar.gz tsutsumi@shell.sourceforge.jp:jahtml.tar.gz
64         ssh tsutsumi@shell.sourceforge.jp \
65          'rm -fr /home/groups/c/cc/ccunit/htdocs/*;\
66           tar xzf html.tar.gz -C /home/groups/c/cc/ccunit/htdocs;\
67           mkdir -p /home/groups/c/cc/ccunit/htdocs/ja;\
68           tar xzf jahtml.tar.gz -C /home/groups/c/cc/ccunit/htdocs/ja'
69         rm /tmp/html.tar.gz /tmp/jahtml.tar.gz