-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.ac
49 lines (40 loc) · 1.03 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
# Require autoconf 2.57 or newer.
AC_PREREQ([2.57])
# The arguments are package name, and package version.
AC_INIT([surface-extraction],[3.0.3], [Claude Lepage <claude@bic.mni.mcgill.ca>])
AC_CONFIG_SRCDIR([src/surface_fit.c])
AM_INIT_AUTOMAKE
# The argument is the name of the generated header file.
# It is recommended to leave it as "config.h".
AC_CONFIG_HEADERS([config.h])
# This macro eases building the package; see m4/README.
smr_WITH_BUILD_PATH
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
mni_REQUIRE_BICPL
AC_PATH_PROGS(PERL, [perl], no)
# Finish up by writing output files.
AC_OUTPUT(
scripts/utils.pl
scripts/deform_utils.pl
scripts/asp
scripts/calibrate_white
scripts/check_surf_surf_intersect
scripts/clasp
scripts/classify_correct
scripts/cortical_thickness
scripts/equidistribute_object.pl
scripts/expand_from_white
scripts/extract_white_surface
scripts/make_asp_grid
scripts/marching_cubes.pl
scripts/mask_cortical_white_matter
scripts/pve_defrag
scripts/surface_qc
Makefile
src/Makefile
epm-header
)