Skip to content

Commit cbebbae

Browse files
committed
Remove all the generated autotools files
All these files are generated by autotools, and thus there is no need to store them statically in the repository (where they will only pile up, growing the size of the repository). Also, the mismatch between the version of autotools on the host vs the ones used to generated the current files in the repository causes troubles. Instead, let users (or make dist) generate them all, using a simple run of autoreconf. Add them to .gitignore, so there is no risk to commit them again. Fixes: #25
1 parent b1d5212 commit cbebbae

19 files changed

Lines changed: 14 additions & 39664 deletions

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Makefile.in
2+
3+
/aclocal.m4
4+
/compile
5+
/config.guess
6+
/config.sub
7+
/configure
8+
/depcomp
9+
/install-sh
10+
/ltmain.sh
11+
/m4/
12+
/missing
13+
/test-driver

INSTALL

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
On systems with make, the installation process consists of:
44

5+
autoreconf -fi
56
./configure
67
make
78
make check
@@ -13,9 +14,6 @@ linking your program to libcsv.
1314
This will install the csv.h header, libcsv shared and static libraries,
1415
and the csv(3) manual page. Run ./configure --help for other options.
1516

16-
If you receive an error about files being out of date or automake not installed
17-
when running make, run the fix-timestamps.sh script and try again.
18-
1917
[Installing on systems without make]
2018

2119
libcsv is written in pure ANSI C89 and does not have any prerequisites aside

0 commit comments

Comments
 (0)