From 73299237fbb3f742da5ad40f0fe9e379e687e6d6 Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Wed, 12 Mar 2014 04:06:15 -0400 Subject: [PATCH] Makefile: add standalone target that doesn't install quicklisp --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 655b557..675babf 100644 --- a/Makefile +++ b/Makefile @@ -73,6 +73,16 @@ $(PGLOADER): manifest buildapp pgloader: $(PGLOADER) ; +pgloader-standalone: + buildapp --require sb-posix \ + --require sb-bsd-sockets \ + --require sb-rotate-byte \ + --load-system pgloader \ + --entry pgloader:main \ + --dynamic-space-size 4096 \ + --compress-core \ + --output $(PGLOADER) + test: $(MAKE) PGLOADER=$(realpath $(PGLOADER)) -C test all @@ -95,4 +105,4 @@ rpm: check: test ; -.PHONY: test +.PHONY: test pgloader-standalone