diff options
author | Cameron <cameron@VirtualBox.(none)> | 2017-05-11 21:51:54 -0500 |
---|---|---|
committer | Cameron <cameron@VirtualBox.(none)> | 2017-05-11 21:51:54 -0500 |
commit | 46048394acb7f6441a362c41cc16b7d7d31ba210 (patch) | |
tree | f4bff2cb6846d06f54cef32d862f5ff6266c0571 /tools/bin2c | |
parent | ca3da9a99901a20aa1b32a2bd9063fb49bb8612a (diff) |
add LDFLAGS variable to tools makefiles
Diffstat (limited to 'tools/bin2c')
-rw-r--r-- | tools/bin2c/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bin2c/Makefile b/tools/bin2c/Makefile index eee19af22..715668eba 100644 --- a/tools/bin2c/Makefile +++ b/tools/bin2c/Makefile @@ -7,7 +7,7 @@ CFLAGS = -Wall -Wextra -std=c11 -O2 SRCS = bin2c.c bin2c: $(SRCS) - $(CC) $(CFLAGS) $(SRCS) -o $@ + $(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) clean: $(RM) bin2c bin2c.exe |