Skip to content

Commit

Permalink
pinns: Add LDFLAGS to Makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Shea <[email protected]>
  • Loading branch information
sheabot committed Nov 24, 2021
1 parent 7048f24 commit 11c127f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pinns/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CFLAGS ?= -std=c99 -Os -Wall -Werror -Wextra -static
all: ../bin/pinns

../bin/pinns: $(obj) | ../bin
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS) $(LIBS)
$(STRIP) -s $@

%.o: %.c $(HEADERS)
Expand Down

0 comments on commit 11c127f

Please sign in to comment.