aboutsummaryrefslogtreecommitdiffstats
path: root/webstats/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'webstats/makefile')
-rw-r--r--webstats/makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/webstats/makefile b/webstats/makefile
new file mode 100644
index 0000000..1b3b830
--- /dev/null
+++ b/webstats/makefile
@@ -0,0 +1,16 @@
+##
+# Web stats
+#
+# @file
+# @version 0.1
+
+build:
+ sbcl \
+ --eval '(pushnew *default-pathname-defaults* asdf:*central-registry*)' \
+ --eval '(asdf:load-asd "webstats.asd")' \
+ --eval '(asdf:load-system :webstats)' \
+ --eval '(webstats::create-static-assets)' \
+ --eval '(asdf:make :webstats)' \
+ --eval '(quit)'
+
+# end