diff options
author | Rob Austein <sra@hactrn.net> | 2016-06-24 17:04:05 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-06-24 17:04:05 -0400 |
commit | ad4506783b053fc7ac4918051783c8850a766b93 (patch) | |
tree | f66d0534c994ba5ba63c95e0a56b0962ec437c7e | |
parent | be705c3aecaf201b7f9c649cfed01e38e73c8f68 (diff) |
Support VPATH builds.
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index d3255f8..d0ddce7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -56,7 +56,7 @@ ifdef CROSS_COMPILE endif TOP := $(shell pwd) -TARBALL := ${TOP}/$(notdir ${URL}) +TARBALL ?= ${TOP}/$(notdir ${URL}) BUILD := ${TOP}/build OUTPUT := ${BUILD}/sqlite3.h ${BUILD}/.libs/libsqlite3.a ${BUILD}/sqlite3 TARGETS := $(notdir ${OUTPUT}) |