Initial revision

This commit is contained in:
Marcel Holtmann 2014-04-25 17:57:48 -07:00
commit 344a33268c
5 changed files with 60 additions and 0 deletions

24
.gitignore vendored Normal file
View File

@ -0,0 +1,24 @@
*.o
*.lo
*.la
.libs
.deps
.dirstamp
Makefile
Makefile.in
aclocal.m4
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
depcomp
compile
install-sh
libtool
ltmain.sh
missing
stamp-h1
autom4te.cache

6
Makefile.am Normal file
View File

@ -0,0 +1,6 @@
AM_MAKEFLAGS = --no-print-directory
MAINTAINERCLEANFILES = Makefile.in \
aclocal.m4 configure config.h.in config.sub config.guess \
ltmain.sh depcomp compile missing install-sh mkinstalldirs

3
bootstrap Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
autoreconf --force --install

9
bootstrap-configure Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
if [ -f config.status ]; then
make maintainer-clean
fi
./bootstrap && \
./configure --enable-maintainer-mode \
--prefix=/usr $*

18
configure.ac Normal file
View File

@ -0,0 +1,18 @@
AC_PREREQ(2.60)
AC_INIT(iwd, 0.0)
AM_INIT_AUTOMAKE([foreign subdir-objects color-tests silent-rules
tar-pax no-dist-gzip dist-xz])
AC_CONFIG_HEADERS(config.h)
AC_USE_SYSTEM_EXTENSIONS
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_MAINTAINER_MODE
AC_PREFIX_DEFAULT(/usr/local)
AC_PROG_CC
AC_PROG_INSTALL
AC_OUTPUT(Makefile)