mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-24 00:09:26 +01:00
Initial revision
This commit is contained in:
commit
344a33268c
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal 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
6
Makefile.am
Normal 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
|
9
bootstrap-configure
Executable file
9
bootstrap-configure
Executable 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
18
configure.ac
Normal 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)
|
Loading…
Reference in New Issue
Block a user