Default make target is now building pgloader self-contained binary.

This commit is contained in:
Dimitri Fontaine 2013-11-13 21:45:33 +01:00
parent a41ce12023
commit 27f485b4d6

View File

@ -9,6 +9,8 @@ BUILDAPP = build/buildapp
MANIFEST = build/manifest.ql
PGLOADER = build/pgloader.exe
all: $(PGLOADER)
docs:
pandoc pgloader.1.md -o pgloader.1
pandoc pgloader.1.md -o pgloader.html
@ -75,7 +77,7 @@ $(PGLOADER): $(MANIFEST) $(BUILDAPP)
--entry pgloader:main \
--dynamic-space-size 4096 \
--compress-core \
--output build/pgloader.exe
--output $@
pgloader: $(PGLOADER) ;