Add LDFLAGS to Makefile

This commit adds LDFLAGS to the Makefile, because they are needed for
the build system of some distros.
This commit is contained in:
j.r 2020-10-22 18:59:04 +02:00 committed by Eyal Sawady
parent fb2bd86344
commit 628e77fa2c
No known key found for this signature in database
GPG Key ID: 604D3459E53A9952
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
.POSIX:
all:
$(CC) -o among-sus $(CFLAGS) main.c
$(CC) -o among-sus $(CFLAGS) main.c $(LDFLAGS)
clean:
rm -f among-sus