mirror of
git://git.savannah.gnu.org/config.git
synced 2025-05-26 09:06:38 +12:00

* testsuite/config-guess.sh: New test. * testsuite/config-guess.data: New file. * testsuite/uname.in: Likewise. * testsuite/config-sub.data (amd64-unknown-freebsd5.2): New case.
17 lines
520 B
Makefile
17 lines
520 B
Makefile
SHELL=/usr/pkg/bin/bash
|
|
UPLOAD=ftp://ftp-upload.gnu.org/incoming/ftp/
|
|
|
|
all:
|
|
@echo "Type 'make upload' to upload to the GNU FTP server."
|
|
|
|
upload:
|
|
gpg --detach-sign config.guess
|
|
gpg --detach-sign config.sub
|
|
echo "directory: config" | gpg --clearsign > config.guess.directive.asc
|
|
cp config.guess.directive.asc config.sub.directive.asc
|
|
ftp -a -u $(UPLOAD) config.{guess,sub}{,.sig,.directive.asc}
|
|
rm config.{guess,sub}{.sig,.directive.asc}
|
|
|
|
check:
|
|
cd testsuite && (sh config-sub.sh; sh config-guess.sh) && rm uname
|