Respect LDFLAGS when linking tests

Otherwise it's not possible to link e.g. system minizip if it's outside
the default search paths.
This commit is contained in:
Sijmen J. Mulder 2021-07-27 17:01:11 +02:00 committed by John McNamara
parent 2f459cae2d
commit b2b7000c42
3 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ clean :
# Executable targets.
%: %.c $(LIBXLSXWRITER)
$(Q)$(CC) -I$(INC_DIR) $(CFLAGS) $(GCOV) $< -o $@ $(LIBS)
$(Q)$(CC) -I$(INC_DIR) $(CFLAGS) $(LDFLAGS) $(GCOV) $< -o $@ $(LIBS)
test_valgrind: all
$(Q)$(foreach exe,$(EXES),valgrind -q --error-exitcode=1 --leak-check=full ./$(exe) || exit;)

View File

@ -106,7 +106,7 @@ clean :
# Builds the tests.
#
test_all : test_all.o $(OBJS) $(LIBS_A)
$(Q)$(CC) $(CFLAGS) -I$(INC_DIR) -o $@ $^ $(LIBS_O)
$(Q)$(CC) $(CFLAGS) $(LDFLAGS) -I$(INC_DIR) -o $@ $^ $(LIBS_O)
###############################################################################

View File

@ -53,7 +53,7 @@ clean :
$(Q)$(CC) -I$(INC_DIR) $(CFLAGS) -c $<
test_%: main.o test_%.o $(LIBS_A)
$(Q)$(CC) $(CFLAGS) -o $@ $^ $(LIBS_O)
$(Q)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS_O)
# Link all the tests into one test executable.
test_all : main.o $(OBJS) $(LIBS_A)