mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-23 23:10:57 +07:00
eb203b01c9
The structure of the source tree is basically correct and this is about as far as we can go without hacking at the C code.
15 lines
220 B
Bash
Executable File
15 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if type -p gtkdocize > /dev/null; then
|
|
gtkdocize --docdir docs
|
|
gtkdocargs=--enable-gtk-doc
|
|
fi
|
|
|
|
aclocal && \
|
|
autoheader && \
|
|
autoconf && \
|
|
libtoolize --copy && \
|
|
automake --add-missing --copy
|