mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5153 42af7a65-404d-4744-a932-0658087f49c3
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
|