Default to static linking.

This commit is contained in:
Simon Lieb 2015-04-01 22:52:22 +02:00
parent ec4e798496
commit dc1d5b6f24

View file

@ -13,7 +13,7 @@ LIBS =
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_XOPEN_SOURCE=500
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}
LDFLAGS = -static -s ${LIBS}
# compiler and linker
CC = cc