libds

simple data structures library and utility functions
git clone git://git.2f30.org/libds
Log | Files | Refs | LICENSE

commit deaf0cc5278affede06c5699a2dc82386562da3c
parent b1d8eaab95257c6e823bafb2441e5e78020ca182
Author: sin <sin@2f30.org>
Date:   Mon,  7 Apr 2014 14:43:59 +0100

Add -s to LDFLAGS by default

Diffstat:
Mconfig.mk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.mk b/config.mk @@ -14,7 +14,7 @@ LIBS = -L/usr/lib -lc # flags CPPFLAGS = -DVERSION=\"${VERSION}\" CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -LDFLAGS = ${LIBS} +LDFLAGS = -s ${LIBS} # compiler and linker CC = cc