mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-26 09:06:38 +12:00
24 lines
603 B
Makefile
24 lines
603 B
Makefile
all:
|
|
|
|
check: check-guess check-sub
|
|
|
|
manpages: doc/config.guess.1 doc/config.sub.1
|
|
|
|
doc/config.guess.1: config.guess
|
|
help2man -N --include=doc/config.guess.x --output=$@ ./config.guess
|
|
|
|
doc/config.sub.1: config.sub
|
|
help2man -N --name "validate and canonicalize a configuration triplet" --output=$@ ./config.sub
|
|
|
|
check-guess:
|
|
cd testsuite && bash config-guess.sh && rm uname
|
|
|
|
check-sub:
|
|
cd testsuite && bash config-sub.sh
|
|
|
|
shellcheck:
|
|
shellcheck -e SC2006 -f gcc config.guess config.sub testsuite/*.sh
|
|
|
|
sort:
|
|
for f in config-guess.data config-sub.data ; do sort testsuite/$$f -o testsuite/$$f; done
|