aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: f9efee84b4d4b2cf13044824dfc9b84d45748b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
LISP ?= sbcl


app:
	${LISP} --eval '(pushnew #P"." ql:*local-project-directories*)' \
		--eval '(ql:quickload :oneliners.cli/app)' \
	 	--eval '(asdf:make :oneliners.cli/app)' \
	 	--eval '(quit)'

client:
	${LISP} --eval '(pushnew #P"." ql:*local-project-directories*)' \
		--eval '(ql:quickload :oneliners.cli/generate-client)' \
		--eval '(oneliners.cli.genclient::run)'\
		--eval '(quit)'

.PHONY: app client