Skip to content

Commit

Permalink
Add manual page and use m4 for autotools.
Browse files Browse the repository at this point in the history
  • Loading branch information
pullmoll committed Feb 27, 2016
1 parent 5cf3291 commit 2ead321
Show file tree
Hide file tree
Showing 4 changed files with 790 additions and 5 deletions.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,24 @@ Makefile
aclocal.m4
autom4te.cache/
compile
config.guess
config.h
config.h.in
config.h.in~
config.log
config.status
config.sub
configure
depcomp
install-sh
ltmain.sh
libfts.la
libtool
missing
fts.lo
fts.o
musl-fts.pc
stamp-h1
.libs/
m4/

1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Makefile.am - procress this file with automake to produce Makefile.in
ACLOCAL_AMFLAGS = -I m4
lib_LTLIBRARIES = libfts.la
libfts_la_SOURCES = fts.c
libfts_la_HEADERS = fts.h
Expand Down
7 changes: 2 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
dnl Process this file with autoconf to produce a configure script

AC_PREREQ(2.69)

AC_INIT([fts], [1.2.4], [[email protected]])

AC_INIT([fts], [1.2.5], [[email protected]])
AM_INIT_AUTOMAKE([1.15])

AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_HEADER(config.h)

AC_PROG_CC
AC_PROG_LIBTOOL

LT_INIT

AC_CHECK_HEADERS(assert.h dirent.h errno.h fcntl.h stdlib.h string.h unistd.h sys/param.h sys/stat.h)
Expand Down
Loading

1 comment on commit 2ead321

@bsdsx
Copy link

@bsdsx bsdsx commented on 2ead321 Feb 27, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you rocks :)

Please sign in to comment.