mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 12:58:08 +01:00
12 lines
231 B
Bash
Executable File
12 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This file is handy to update all the files generated by autoconf, automake
|
|
# and friends, quickly.
|
|
#
|
|
|
|
aclocal -I .
|
|
autoheader
|
|
autoconf
|
|
libtoolize --copy --force --automake
|
|
automake --add-missing --gnu --include-deps
|