Skip to content

Commit d0ab142

Browse files
authored
Respect LDFLAGS in Makefile
1 parent a984529 commit d0ab142

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CFLAGS += -Wall -Wextra -Werror -Oz
22

33
libtermux-exec.so: termux-exec.c
4-
$(CC) $(CFLAGS) termux-exec.c -shared -fPIC -o libtermux-exec.so
4+
$(CC) $(CFLAGS) $(LDFLAGS) termux-exec.c -shared -fPIC -o libtermux-exec.so
55

66
install: libtermux-exec.so
77
install libtermux-exec.so $(PREFIX)/lib/libtermux-exec.so

0 commit comments

Comments
 (0)