From 27f485b4d60822df0b23ea1fd0e6ee9ef28fa59f Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Wed, 13 Nov 2013 21:45:33 +0100 Subject: [PATCH] Default make target is now building pgloader self-contained binary. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de32e8e..925fe2f 100644 --- a/Makefile +++ b/Makefile @@ -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) ;