diff options
author | dan <[email protected]> | 2023-05-14 21:53:17 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-05-14 21:53:17 -0400 |
commit | 55d4b75ee6af971d79fcdabdec7969f224f09dca (patch) | |
tree | ca409cab965a6e0b023d19b6462e54b3b00d81cd /makefile | |
download | simple-comments-widget-55d4b75ee6af971d79fcdabdec7969f224f09dca.tar.gz simple-comments-widget-55d4b75ee6af971d79fcdabdec7969f224f09dca.tar.bz2 simple-comments-widget-55d4b75ee6af971d79fcdabdec7969f224f09dca.zip |
init
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 12 |
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/ + + |