aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-08-19 19:54:55 -0500
committerColin Okay <colin@cicadas.surf>2022-08-19 19:54:55 -0500
commita371f89f8fefa20a823ce77e1c6a9ffc4a2f5cfd (patch)
tree203139184e6e861e8742942ef9033357d5a2d625
parentb2e05b5fd51a7668717fcfd2cb80476da78562ab (diff)
[add] client target 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