mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-11-23 23:10:57 +07:00
c47f33a498
The original Makefile.am was drawn to the top level. This commit breaks it out into the various directories with SUBDIRS connecting them. This makes each directory easier to maintain.
11 lines
146 B
Bash
Executable File
11 lines
146 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
aclocal && \
|
|
autoheader && \
|
|
autoconf && \
|
|
libtoolize --copy && \
|
|
gtkdocize --docdir docs && \
|
|
automake --add-missing --copy
|