Skip to content

Commit 94a13e8

Browse files
author
pkwill
committed
autotools: move auxiliary files to src/sys/auto
This will clean up the toplevel directory a bit which is nice. (Although if you've been using the autotools, you'll probably have to manually remove the files they've created.) A run of 'autoreconf -f -i' will probably be needed to update all of the files after this commit.
1 parent 409b1a9 commit 94a13e8

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.cvsignore

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,17 @@ autom4te.cache
55
automiriad.csh
66
automiriad.sh
77
bin
8-
compile
9-
config.guess
108
config.h.in
119
config.h
1210
config.log
1311
config.status
14-
config.sub
1512
configure
16-
depcomp
1713
include
18-
install-sh
1914
lib
2015
libexec
2116
libtool
22-
libtool.m4
23-
ltoptions.m4
24-
ltsugar.m4
25-
ltversion.m4
26-
lt~obsolete.m4
27-
ltmain.sh
2817
miriad-*.tar.gz
29-
missing
3018
share
3119
stamp-h1
32-
ylwrap
3320
*.diff
3421
BUILD*

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## $Id$
33
##
44

5-
ACLOCAL_AMFLAGS = -I .
5+
ACLOCAL_AMFLAGS = -I src/sys/auto
66

77
## For pdocdir / sdocdir.
88

autogen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if test "x$LIBTOOLIZE" = x; then
99
fi
1010

1111
echo "Initializing build scripts ..."
12-
aclocal -I .
12+
aclocal -I src/sys/auto
1313
if [ $? -ne 0 ]; then
1414
echo "ERROR - Exiting..."
1515
exit 1

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ AC_PREREQ(2.62)
44
AC_INIT([MIRIAD],[4.3.1],[[email protected]])
55
AC_REVISION([$Revision$])
66
AC_CONFIG_SRCDIR([src/subs/uvio.c])
7-
AC_CONFIG_MACRO_DIR([.])
8-
AC_CONFIG_AUX_DIR([.])
7+
AC_CONFIG_MACRO_DIR([src/sys/auto])
8+
AC_CONFIG_AUX_DIR([src/sys/auto])
99

1010
dnl FIXME! Require Automake 1.11 for now, since we currently need
1111
dnl AM_DEFAULT_SOURCE_EXT to build all of the tasks. A lot

src/sys/auto/.cvsignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
Makefile
22
Makefile.in
33
*_ds
4+
compile
5+
config.guess
6+
config.sub
7+
depcomp
48
docwork
9+
install-sh
10+
libtool.m4
11+
ltoptions.m4
12+
ltsugar.m4
13+
ltversion.m4
14+
lt~obsolete.m4
15+
ltmain.sh
516
Makefile.standalone
617
Makefile.standalone.tmpl
718
mirmake
19+
missing
20+
ylwrap
821
*.clone
File renamed without changes.

0 commit comments

Comments
 (0)