Skip to content

Commit

Permalink
remove unused deps target
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tantaman authored Nov 27, 2023
1 parent 7a48dd7 commit 2a8f5b3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2a8f5b3

Please sign in to comment.