make utest/Makefile respect LDFLAGS

This commit is contained in:
François Bissey 2016-10-13 09:32:25 +13:00
parent 161c927071
commit f124ffab47
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ endif
all : run_test all : run_test
$(UTESTBIN): $(OBJS) $(UTESTBIN): $(OBJS)
$(CC) $(CFLAGS) -o $@ $^ ../$(LIBNAME) $(EXTRALIB) $(FEXTRALIB) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ ../$(LIBNAME) $(EXTRALIB) $(FEXTRALIB)
run_test: $(UTESTBIN) run_test: $(UTESTBIN)
ifndef CROSS ifndef CROSS