~ubuntu-branches/ubuntu/wily/esorex/wily-proposed

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2011-11-25 12:08:00 UTC
  • Revision ID: package-import@ubuntu.com-20111125120800-hb8qatpoxkhv0fne
Tags: upstream-3.9.0
ImportĀ upstreamĀ versionĀ 3.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
##   This file is part of the ESO Recipe Execution Tool
 
4
##   Copyright (C) 2004 European Southern Observatory
 
5
 
 
6
##   This program is free software; you can redistribute it and/or modify
 
7
##   it under the terms of the GNU General Public License as published by
 
8
##   the Free Software Foundation; either version 2 of the License, or
 
9
##   (at your option) any later version.
 
10
 
 
11
##   This program is distributed in the hope that it will be useful,
 
12
##   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
##   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
##   GNU General Public License for more details.
 
15
 
 
16
##   You should have received a copy of the GNU General Public License
 
17
##   along with this program; if not, write to the Free Software
 
18
##   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
 
 
20
 
 
21
AUTOMAKE_OPTIONS = 1.8 foreign
 
22
 
 
23
ACLOCAL_AMFLAGS = -I m4macros
 
24
 
 
25
DISTCLEANFILES = *~
 
26
 
 
27
 
 
28
COMPILE_FIRST = libltdl
 
29
 
 
30
TOPSUBDIRS = src etc
 
31
 
 
32
COMPILE_LAST = tests
 
33
 
 
34
HTML_SUBDIRS =
 
35
 
 
36
SUBDIRS = $(COMPILE_FIRST) $(TOPSUBDIRS) $(COMPILE_LAST)
 
37
 
 
38
EXTRA_DIST = BUGS m4macros/cpl.m4 m4macros/eso.m4 m4macros/purify.m4 admin/html.am \
 
39
        doxygen/Doxyfile.in examples
 
40
 
 
41
 
 
42
if MAINTAINER_MODE
 
43
 
 
44
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.h.in config.log \
 
45
        config.status configure stamp-h.in libltdl/config-h.in \
 
46
        libltdl/aclocal.m4 libltdl/Makefile.in libltdl/configure \
 
47
        libltdl/config.status libltdl/stamp-h.in libltdl/config.log
 
48
 
 
49
clean-local: clean-html
 
50
 
 
51
dist-hook: html
 
52
        @if test -d $(top_srcdir)/html; then \
 
53
          echo "cp -pr $(top_srcdir)/html $(distdir)"; \
 
54
          cp -pr $(top_srcdir)/html $(distdir); \
 
55
        fi
 
56
        find $(distdir) -type d ! -perm -222 -exec chmod u+w {} \; -o \
 
57
        -type f ! -perm -222 -exec chmod u+w {} \; || chmod -R u+w $(distdir)
 
58
 
 
59
else
 
60
 
 
61
clean-local:
 
62
 
 
63
endif
 
64
 
 
65
uninstall-local: uninstall-html
 
66
 
 
67
include $(top_srcdir)/admin/html.am