1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

Pass $LIBS to the linker

This commit is contained in:
Petr Baudis 2005-09-16 13:13:43 +02:00
parent cf0c9fce4e
commit c404ead42c

View File

@ -28,7 +28,7 @@ quiet_cmd_archive = '[AR] $@'
cmd_archive = $(AR) r $@ $^
quiet_cmd_link = '[LINK] $@'
cmd_link = $(CC) $(LDFLAGS) -o $@ $^
cmd_link = $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
# Recursive make
quiet_cmd_recmake = "[MAKE $$target] $$subdir"