Moved Windows binary snapshot to SourceForge.

This commit is contained in:
Oliver Schmidt
2014-10-30 22:15:45 +01:00
parent 1673a40a77
commit 8ec3d9268e
3 changed files with 24 additions and 7 deletions

16
Makefile.sf-files Normal file
View File

@@ -0,0 +1,16 @@
.PHONY: all
.SUFFIXES:
SCPFLAGS = -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no
SF_USER = oliverschmidt
SF_HOST = frs.sourceforge.net
SF_FILE = /home/frs/project/cc65/cc65-snapshot-win64.zip
all:
echo $(TRAVIS_COMMIT) | zip -z cc65
ifdef SF_PASS
@echo 'sshpass -p $$(SF_PASS) scp $(SCPFLAGS) cc65.zip $(SF_USER)@$(SF_HOST):$(SF_FILE)'
@sshpass -p $(SF_PASS) scp $(SCPFLAGS) cc65.zip $(SF_USER)@$(SF_HOST):$(SF_FILE)
endif