aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5694970..f9efee8 100644
--- a/Makefile
+++ b/Makefile
@@ -7,4 +7,10 @@ app:
--eval '(asdf:make :oneliners.cli/app)' \
--eval '(quit)'
-.PHONY: app
+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