You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
496 B
15 lines
496 B
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
|
|
|