-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfigure.ac
47 lines (36 loc) · 1.89 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
#=========================================================================
# Toplevel configure.ac for the Modular Verilog/ASIC Build System
#=========================================================================
#-------------------------------------------------------------------------
# Project metadata
#-------------------------------------------------------------------------
m4_define( proj_name, [Modular Verilog/ASIC Build System])
m4_define( proj_maintainer, [Christopher Batten])
m4_define( proj_abbreviation, [mvabs])
#-------------------------------------------------------------------------
# Project version information
#-------------------------------------------------------------------------
# Version information is meant to be managed through a version control
# system's tags and revision numbers. In a working copy the version will
# not be defined here (you should just use the version control system's
# mechanisms). When we make a distribution then we can set the version
# here as formed by the scripts/vcs-version.sh script so that the
# distribution knows what version it came from. If you are not using
# version control then it is fine to set this directly.
m4_define( proj_version, [?])
#-------------------------------------------------------------------------
# Setup
#-------------------------------------------------------------------------
AC_INIT(proj_name,proj_version,proj_maintainer,proj_abbreviation)
AC_CONFIG_SRCDIR([subprojs.mk])
AC_CONFIG_AUX_DIR([scripts])
AC_CANONICAL_BUILD
#-------------------------------------------------------------------------
# Basic checks
#-------------------------------------------------------------------------
MVABS_PROG_VERILOG_COMPILER
#-------------------------------------------------------------------------
# Output
#-------------------------------------------------------------------------
AC_CONFIG_FILES([Makefile])
AC_OUTPUT