This repository has been archived by the owner on Oct 10, 2019. It is now read-only.
forked from prelz/BLAH
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile.am
executable file
·76 lines (68 loc) · 2.61 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#
# Copyright (c) 2004 on behalf of the EU EGEE Project:
# The European Organization for Nuclear Research (CERN),
# Istituto Nazionale di Fisica Nucleare (INFN), Italy
# Datamat Spa, Italy
# Centre National de la Recherche Scientifique (CNRS), France
# CS Systeme d'Information (CSSI), France
# Royal Institute of Technology, Center for Parallel Computers (KTH-PDC), Sweden
# Universiteit van Amsterdam (UvA), Netherlands
# University of Helsinki (UH.HIP), Finland
# University of Bergen (UiB), Norway
# Council for the Central Laboratory of the Research Councils (CCLRC), United Kingdom
#
# Basic build files for blahp
#
## Process this file with automake to produce Makefile.in
EXTRA_DIST = LICENSE
docdir = $(datadir)/doc/@PACKAGE@-@PVER@
doc_DATA = LICENSE
## Subdirectories list
SUBDIRS = src config doc
## Default flags to run aclocal
ACLOCAL_AMFLAGS = -I project
stage:
@set fnord $(MAKEFLAGS); amf=$$2; \
dot_seen=no; \
target="install"; \
prefix_arg="@prefix@"; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target $$prefix_arg in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target $$prefix_arg) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" $$prefix_arg || exit 1; \
fi; test -z "$$fail"
distsrc: dist
mv $(distdir).tar.gz $(DISTTAR)/$(distdir)_src.tar.gz
distbin:
@set fnord $(MAKEFLAGS); amf=$$2; \
dot_seen=no; \
target="install"; \
tmpdistbin="$(WORKDIR)/dist_bin"; \
prefix_arg="prefix=$$tmpdistbin"; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target $$prefix_arg in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target $$prefix_arg) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" $$prefix_arg || exit 1; \
fi; test -z "$$fail"; \
pushd $$tmpdistbin; \
$(AMTAR) -zcf $(DISTTAR)/$(distdir)_bin.tar.gz .; \
popd; \
rm -rf $$tmpdistbin