aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTeddy Wing2022-05-08 18:07:27 +0200
committerTeddy Wing2022-05-08 18:07:27 +0200
commitca75a8f0f3860f0ac64eaf7fdeaec422912fcd99 (patch)
tree4ca0b4374e24e77e5a738c96d026b7cbbe482417 /Makefile
parent6a4dcbbaaf4f75fceb402ea073eb33d32445bbcb (diff)
downloadwajir-ca75a8f0f3860f0ac64eaf7fdeaec422912fcd99.tar.bz2
Parse command line options
* Define command line options for the program * Define Make rules to build a binary * Fix system entrypoint definition * Comment out some application code to test command line option parsing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..03dbb2c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+LISP ?= sbcl
+
+
+.PHONY: build
+build: wajir
+
+wajir: wajir.asd lib/* src/*.lisp
+ $(LISP) --load wajir.asd \
+ --eval '(ql:quickload :wajir)' \
+ --eval '(asdf:make :wajir)' \
+ --eval '(quit)'