Makefile: add standalone target that doesn't install quicklisp

This commit is contained in:
Nikhil Benesch 2014-03-12 04:06:15 -04:00
parent 7ec2ca30e8
commit 73299237fb

View File

@ -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