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: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
915fae193b
commit
729cbe84b8
|
|
@ -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 $@ $<
|
||||
|
|
|
|||
Loading…
Reference in New Issue