Remove dependency on system libsqlite headers from compatibility tests

This commit is contained in:
Daniel Kaluza 2025-01-03 11:13:04 +01:00
parent 90d01f468f
commit 34690e3b63
2 changed files with 7 additions and 2 deletions

View file

@ -29,7 +29,7 @@ test: $(PROGRAM)
%.o: %.c
$(E) " CC " $@
$(Q) $(CC) $(CFLAGS) -c $< -o $@
$(Q) $(CC) $(CFLAGS) -c $< -o $@ -I$(HEADERS)
$(PROGRAM): $(OBJS)
$(E) " LINK " $@