Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
*.la
*.lo
*.log
*.o
*.trs
.deps
.libs
Makefile
Makefile.in

/aclocal.m4
/autom4te.cache/
/check_csv
/compile
/config.guess
/config.status
/config.sub
/configure
/depcomp
/install-sh
/libtool
/ltmain.sh
/m4/
/missing
/test-driver
4 changes: 1 addition & 3 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

On systems with make, the installation process consists of:

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

If you receive an error about files being out of date or automake not installed
when running make, run the fix-timestamps.sh script and try again.

[Installing on systems without make]

libcsv is written in pure ANSI C89 and does not have any prerequisites aside
Expand Down
Loading