mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4200 7fd9a85b-ad96-42d3-883c-3090e2eb8679
16 lines
496 B
Makefile
16 lines
496 B
Makefile
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
|