aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-10-06 18:49:10 -0700
committerGravatar Tom Willemse2019-10-06 18:49:10 -0700
commitf0c1ca14686080bcdb7c6b07f2c7530b56ddbd29 (patch)
tree604d13ef84d823fdb309af83e7d688d04e90531d /GNUmakefile
parenta00df1cad87b16222f708636d2831bd8581e1d2a (diff)
downloadnew-ryuslash.org-f0c1ca14686080bcdb7c6b07f2c7530b56ddbd29.tar.gz
new-ryuslash.org-f0c1ca14686080bcdb7c6b07f2c7530b56ddbd29.zip
Add gitlab-ci configuration
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 2e62e41..ff308af 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,9 +1,16 @@
-.PHONY: site
+.PHONY: site html css
-site: public_html/index.html public_html/assets/css/main.css
+site: html css
+
+html: public_html/index.html
+
+css: public_html/assets/css/main.css
public_html/%.html: %.org
- emacs -batch -funcall package-initialize -load project-config.el -funcall publish-ryuslash.org
+ emacs -batch \
+ -funcall package-initialize \
+ -load project-config.el \
+ -funcall publish-ryuslash.org
public_html/assets/css/%.css: src/less/%.less
lessc $^ $@