diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-09-22 22:06:51 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-09-22 22:06:51 -0500 |
commit | 6c515197f0792bace16a4b08679ba82f454d53f0 (patch) | |
tree | 5beb938012eadc567d2852e37eb69472c38da685 /devel/vision/Makefile | |
parent | 5ed47ef7ae6ed64d361e1c8945eacc59923467fc (diff) | |
download | horizon-6c515197f0792bace16a4b08679ba82f454d53f0.tar.gz horizon-6c515197f0792bace16a4b08679ba82f454d53f0.tar.bz2 horizon-6c515197f0792bace16a4b08679ba82f454d53f0.tar.xz horizon-6c515197f0792bace16a4b08679ba82f454d53f0.zip |
Put build system in Git
Diffstat (limited to 'devel/vision/Makefile')
-rw-r--r-- | devel/vision/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/vision/Makefile b/devel/vision/Makefile new file mode 100644 index 0000000..47f4031 --- /dev/null +++ b/devel/vision/Makefile @@ -0,0 +1,12 @@ +.POSIX: + +all: html/index.html + +html/index.html: *.xml ../pretty.css + @printf 'Vision: Generating HTML...\n' + @xmlto html -m ../master.xsl -o html vision.xml + @cp ../pretty.css html/ + +upload: html/index.html + @printf 'Uploading Vision...\n' + @scp html/* awilcox@www.adelielinux.org:/srv/www/adelie/www/horizon-vision/ |