mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-23 00:08:50 -05:00
103c7243a2
Added the autoconf option std-options to the scripts/ directory, which checks to ensure all programs have both --help and --version options. A few things needed cleaning up to get this working. To test these types of options, use the 'make distcheck' target. Signed-off-by: Dan McGee <dan@archlinux.org>
16 lines
327 B
Makefile
16 lines
327 B
Makefile
# enforce that all scripts have a --help and --version option
|
|
AUTOMAKE_OPTIONS = std-options
|
|
|
|
bin_SCRIPTS = \
|
|
abs \
|
|
gensync \
|
|
makepkg \
|
|
makeworld \
|
|
pacman-optimize \
|
|
rankmirrors \
|
|
repo-add \
|
|
repo-remove \
|
|
updatesync
|
|
|
|
abs gensync makepkg makeworld pacman-optimize rankmirrors repo-add repo-remove re-pacman updatesync:
|