From ca75a8f0f3860f0ac64eaf7fdeaec422912fcd99 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 8 May 2022 18:07:27 +0200 Subject: 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 --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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)' -- cgit v1.2.3