-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
71 lines (61 loc) · 2.31 KB
/
configure.ac
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
# -*- tab-width:8; indent-tabs-mode:t; c-basic-offset:2; -*-
# vim: set noet sw=2 ts=8 sts=0:
#
# Copyright (c)
# 2022 FAU -- Joachim Falk <[email protected]>
# 2020 FAU -- Joachim Falk <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_INIT(
[SysteMoC Top], [1.0],
[systemoc-top])
AC_PREREQ(2.64)
ACJF_INIT
AC_CONFIG_SRCDIR([forall-projects.sh])
AC_CONFIG_AUX_DIR([BuildSystem])
AC_CONFIG_MACRO_DIR([BuildSystem/m4])
dnl AC_CANONICAL_BUILD
dnl AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([subdir-objects])
ACJF_CONFIG_PKG([CoSupport], [[compile:Support]])
dnl ACJF_CONFIG_PKG([LibNGAnalysis])
dnl ACJF_CONFIG_PKG([LibSGX])
dnl ACJF_CONFIG_PKG([LibSGXUtils])
dnl ACJF_CONFIG_PKG([SGXUtils])
dnl ACJF_CONFIG_PKG([Maestro-Crescendo], [[disabled],[compile:Maestro/Bruckner]])
dnl ACJF_CONFIG_PKG([Maestro], [[disabled],[compile:Maestro/MetaMap]])
ACJF_CONFIG_PKG([SysteMoC])
ACJF_CONFIG_PKG([SystemC-VPC])
dnl ACJF_CONFIG_PKG([Maestro-Crescendo], [[disabled],[compile:Maestro/Crescendo]])
dnl ACJF_CONFIG_PKG([Maestro], [[disabled],[compile:Maestro/ModelLibrary]])
dnl ACJF_CONFIG_PKG([Synthesis-Framework])
dnl ACJF_CONFIG_PKG([Synthesis-SW])
dnl ACJF_CONFIG_PKG([Synthesis-Pthread])
dnl ACJF_CONFIG_PKG([Synthesis-SystemC])
dnl ACJF_CONFIG_PKG([Synthesis-Cynthesizer])
dnl ACJF_CONFIG_PKG([Synthesis-TLM])
dnl ACJF_CONFIG_PKG([Tools])
dnl ACJF_CONFIG_PKG([Clustering])
dnl ACJF_CONFIG_PKG([ActorLibrary])
dnl ACJF_CONFIG_PKG([Testcases])
dnl ACJF_CONFIG_PKG([Examples])
dnl ACJF_CONFIG_PKG([toolsupport])
SUBDIRS=$subdirs
AC_SUBST(SUBDIRS)
AC_CONFIG_FILES([Makefile])
ACJF_DONE
AC_OUTPUT