Skip to content

Commit

Permalink
move OBJS to dep of shlib
Browse files Browse the repository at this point in the history
  • Loading branch information
wuputah committed Sep 27, 2024
1 parent d359060 commit eb2bd91
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@ COMPILE.cc.bc = $(CXX) -Wno-ignored-attributes -Wno-register $(BITCODE_CXXFLAGS)
%.bc : %.cpp
$(COMPILE.cc.bc) $(SHLIB_LINK) -I$(INCLUDE_SERVER) -o $@ $<

all: $(OBJS)

include Makefile.global

# shlib is the final output product - make duckdb and all .o dependencies
$(shlib): $(FULL_DUCKDB_LIB) $(OBJS)

NO_INSTALLCHECK = 1

PYTEST_CONCURRENCY = auto
Expand All @@ -57,8 +58,6 @@ pycheck: all install
check: installcheck pycheck

duckdb: $(FULL_DUCKDB_LIB)
# make completing duckdb a dependency of linking
$(shlib): $(FULL_DUCKDB_LIB)

third_party/duckdb/Makefile:
git submodule update --init --recursive
Expand Down

0 comments on commit eb2bd91

Please sign in to comment.