Browse Source

make utest/Makefile respect LDFLAGS

tags/v0.2.20^2
François Bissey 9 years ago
parent
commit
f124ffab47
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      utest/Makefile

+ 1
- 1
utest/Makefile View File

@@ -18,7 +18,7 @@ endif
all : run_test

$(UTESTBIN): $(OBJS)
$(CC) $(CFLAGS) -o $@ $^ ../$(LIBNAME) $(EXTRALIB) $(FEXTRALIB)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ ../$(LIBNAME) $(EXTRALIB) $(FEXTRALIB)

run_test: $(UTESTBIN)
ifndef CROSS


Loading…
Cancel
Save