Skip to content

Commit d4570e7

Browse files
author
jason
committed
added autoconfiscation
1 parent 96f77a6 commit d4570e7

9 files changed

+69
-57
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Jonathan Taylor and Peter Neelin wrote the code for glim_image
2+
Packaged and currently maintained by Jason Lerch <[email protected]>

COPYING

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Copyright 1993-2003 Peter Neelin and Jonathan Taylor, McConnell Brain
2+
Imaging Centre, Montreal Neurological Institute, McGill University.
3+
Permission to use, copy, modify, and distribute this software and its
4+
documentation for any purpose and without fee is hereby granted,
5+
provided that the above copyright notice appear in all copies. The
6+
author and McGill University make no representations about the
7+
suitability of this software for any purpose. It is provided "as is"
8+
without express or implied warranty.

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2003-12-17 Jason Lerch <[email protected]>
2+
3+
* added autoconfiscation

Makefile

-57
This file was deleted.

Makefile.am

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
bin_PROGRAMS = glim_image
2+
3+
glim_image_SOURCES = glim.c \
4+
glim_image.c \
5+
matrix.c \
6+
smoothness.c
7+
8+
EXTRA_DIST = glim.h \
9+
matrix.h \
10+
smoothness.h
11+

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Version 1.0
2+
3+
* first release to the public with full autoconfiscation.

README

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
README
2+
======
3+
4+
glim_image is a tool for running general linear models across voxels
5+
of multiple MINC images. There's a bit of a lack of documentation
6+
right now, more will hopefully be coming soon. Check these two
7+
web-sites for updates:
8+
http://www.bic.mni.mcgill.ca/software
9+
http://www.bic.mni.mcgill.ca/software/distribution
10+

autogen.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#! /bin/sh
2+
3+
set -e
4+
5+
aclocal -I m4
6+
autoheader
7+
automake --add-missing
8+
autoconf
9+

configure.ac

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
dnl Process this file with autoconf to produce a configure script.
2+
3+
AC_INIT
4+
AC_CONFIG_SRCDIR([glim.c])
5+
AM_INIT_AUTOMAKE(glim_image, 1.0)
6+
AM_CONFIG_HEADER(config.h)
7+
8+
smr_WITH_BUILD_PATH
9+
10+
AC_PROG_INSTALL
11+
AC_PROG_LN_S
12+
AC_PROG_MAKE_SET
13+
14+
AC_PROG_CC
15+
16+
AC_PROG_LIBTOOL
17+
18+
mni_REQUIRE_BICPL
19+
20+
AC_CONFIG_FILES([Makefile])
21+
22+
AC_OUTPUT
23+

0 commit comments

Comments
 (0)