From 2a8f5b311d0dce7d2316e4a741807d106eda538e Mon Sep 17 00:00:00 2001 From: Matt Wonlaw Date: Mon, 27 Nov 2023 17:33:59 -0500 Subject: [PATCH] remove unused `deps` target Was getting an error about being unable to make `deps` for target `deps` when these lines were included. Likely since the amalgamation variable was undefined it was looking for a `deps/` directory for the `deps` target. --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 109e4101..4b458a4d 100644 --- a/Makefile +++ b/Makefile @@ -124,9 +124,6 @@ cache/$(EXTENSION_FUNCTIONS): clean-deps: rm -rf deps -.PHONY: deps -deps: deps/$(SQLITE_AMALGAMATION) deps/$(EXTENSION_FUNCTIONS) - deps/$(SQLITE_VERSION)/sqlite3.h deps/$(SQLITE_VERSION)/sqlite3.c: mkdir -p cache/$(SQLITE_VERSION) curl -LsS $(SQLITE_TARBALL_URL) | tar -xzf - -C cache/$(SQLITE_VERSION)/ --strip-components=1