aboutsummaryrefslogtreecommitdiffstats
path: root/webstats/makefile
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2025-02-09 21:28:34 +0100
committerOscar Najera <hi@oscarnajera.com>2025-02-09 21:28:34 +0100
commit5b0e2eb19bb432e4e170d9bdb1cb8169d526801f (patch)
treecd73b826fb8efcfc0ce08aa56937dddf83b63766 /webstats/makefile
parent756fc597d9e4a77588341ce20cb9f28c8e9422af (diff)
downloadscratch-5b0e2eb19bb432e4e170d9bdb1cb8169d526801f.tar.gz
scratch-5b0e2eb19bb432e4e170d9bdb1cb8169d526801f.tar.bz2
scratch-5b0e2eb19bb432e4e170d9bdb1cb8169d526801f.zip
[webstats] define system and package image
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