X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=distro%2FMakefile;h=96ddce2946db1495998ddb3fc229a67b47f2cd30;hb=c86e778c7658be0036c89ac5dc1795b2b2f2798e;hp=36fc942daca3fbd3553924e2d70d6c9761ab79d3;hpb=217833dff7c7405ac20d3620592d3267aac07c3e;p=xonotic%2Fgmqcc.git diff --git a/distro/Makefile b/distro/Makefile index 36fc942..96ddce2 100644 --- a/distro/Makefile +++ b/distro/Makefile @@ -1,5 +1,7 @@ DROPBOX := dropbox_uploader.sh UNAME := $(shell uname -m) +DOWNLOAD:= ../doc/html/download.c +BRANCH := $(shell git branch | sed -n -e 's/^\* \(.*\)/\1/p') ifneq ($(shell uname -m), x86_64) $(error Cannot build packages without an x86_64 capable CPU) endif @@ -29,9 +31,23 @@ upload: @find . -type f -regex ".*/.*\.\(xz\|deb\|zip\)" -exec ./$$(basename $(DROPBOX)) upload {} \; @rm dropbox_config dropbox_uploader.sh +website: + $(CC) $(DOWNLOAD) -o html.gen + @./html.gen ../ + @rm html.gen + @git stash + @git checkout gh-pages + @rm -f ../download.html + @mv -f download.html ../download.html + @cd ..; git add download.html; git commit -m 'update download page'; git push origin gh-pages; + @git checkout $(BRANCH) + @git stash apply + clean: @rm -f *.deb @rm -f *.pkg.tar.xz @rm -f *.zip + @rm -f *.gen + @rm -f *.html all: base upload