Merge pull request #196 from benesch/makefile-updates

Match pgloader-standalone target to pgloader target
This commit is contained in:
Dimitri Fontaine 2015-03-23 22:19:55 +01:00
commit 8f57c90809

View File

@ -153,13 +153,13 @@ $(PGLOADER): $(MANIFEST) $(BUILDAPP) $(LISP_SRC)
pgloader: $(PGLOADER) ;
pgloader-standalone:
$(BUILDAPP) --require sb-posix \
--require sb-bsd-sockets \
--require sb-rotate-byte \
--load-system pgloader \
$(BUILDAPP) $(BUILDAPP_OPTS) \
--sbcl $(CL) \
--load-system $(APP_NAME) \
--load src/hooks.lisp \
--entry pgloader:main \
--dynamic-space-size $(DYNSIZE) \
--compress-core \
$(COMPRESS_CORE_OPT) \
--output $(PGLOADER)
test: $(PGLOADER)