Commit 7fb61575 authored by Lucas Russo's avatar Lucas Russo

examples/Makefile: add LFLAGS variable to target rule

The LFLAGS variable was not being used by the target
rule.
parent 7706bf2c
......@@ -54,7 +54,7 @@ OUT=client
all: $(OUT)
client: client.c
$(CC) $(CFLAGS) $(INCLUDE_DIRS) $^ -o $@ $(LIBS)
$(CC) $(LFLAGS) $(CFLAGS) $(INCLUDE_DIRS) $^ -o $@ $(LIBS)
#BAD
clean:
......
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