diff options
author | z3bra <contactatz3bradotorg> | 2017-03-02 22:39:21 +0100 |
---|---|---|
committer | z3bra <contactatz3bradotorg> | 2017-03-02 22:39:21 +0100 |
commit | 799e250bbc9cf89bb09b7cfa4afbc4dbb9a46657 (patch) | |
tree | a8ee4102a4f2a68c2b17f5cbbff8679955209437 /Makefile | |
parent | 3a0b00460b6e82d920d360accdbe19d09548b7f7 (diff) |
Explicitely list all libs in LDLIBS
This allow statically linking the binary by simply overriding LDFLAGS.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ nodes.h: .o: @echo LD $@ - @$(LD) -o $@ $< util.a $(LDFLAGS) + @$(LD) -o $@ $< util.a $(LDFLAGS) $(LDLIBS) .c.o: @echo CC $< |