summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-03-07 10:58:03 -0500
committerAdam Jackson <ajax@redhat.com>2018-03-07 10:58:03 -0500
commitdcc8b8346ee4bb541c0637f3cb38349296231616 (patch)
tree04c638cf2e711a6b6aadd8d712a84269e99354c9
parentf56f329ed23a25d002352dedba1e8f092a47286f (diff)
makefile: also honor LDFLAGS
Mmm, PIE. Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 75c436e..f8a36ef 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ bindir ?= /usr/bin
mandir ?= /usr/share/man
edid-decode: edid-decode.c
- $(CC) $(CFLAGS) -g -Wall -o $@ $< -lm
+ $(CC) $(CFLAGS) $(LDFLAGS) -g -Wall -o $@ $< -lm
clean:
rm -f edid-decode