aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authordan <[email protected]>2023-05-14 21:53:17 -0400
committerdan <[email protected]>2023-05-14 21:53:17 -0400
commit55d4b75ee6af971d79fcdabdec7969f224f09dca (patch)
treeca409cab965a6e0b023d19b6462e54b3b00d81cd /makefile
downloadsimple-comments-widget-55d4b75ee6af971d79fcdabdec7969f224f09dca.tar.gz
simple-comments-widget-55d4b75ee6af971d79fcdabdec7969f224f09dca.tar.bz2
simple-comments-widget-55d4b75ee6af971d79fcdabdec7969f224f09dca.zip
init
Diffstat (limited to 'makefile')
-rw-r--r--makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..a42daab
--- /dev/null
+++ b/makefile
@@ -0,0 +1,12 @@
+build: ./main.scm
+ mkdir -p ./build
+ chicken-csc -static ./main.scm \
+ -L -lsqlite3
+ mv ./main ./build/main
+run: build
+ ./build/main
+
+clean:
+ rm -r build/
+
+