Commit 729cbe84 authored by Mike Frysinger's avatar Mike Frysinger Committed by Stephen Hemminger

tc/q_atm.so: respect LDFLAGS

The q_atm.so target defines its own link target, but it doesn't respect the
$(LDFLAGS) variable.
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 915fae19
......@@ -101,7 +101,7 @@ clean:
rm -f emp_ematch.yacc.output
q_atm.so: q_atm.c
$(CC) $(CFLAGS) -shared -fpic -o q_atm.so q_atm.c -latm
$(CC) $(CFLAGS) $(LDFLAGS) -shared -fpic -o q_atm.so q_atm.c -latm
%.yacc.c: %.y
$(YACC) $(YACCFLAGS) -o $@ $<
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment