diff options
author | Rob Austein <sra@hactrn.net> | 2006-10-05 18:16:14 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-10-05 18:16:14 +0000 |
commit | 192705c95332c352d7a4e3fff9ff39e50fef4c03 (patch) | |
tree | fc52b0bce5af71f84c9110819e5ef9578d0a6ea3 | |
parent | 3eb4530a6f86528ae03bd13d2a499aa41b946f71 (diff) |
LDFALGS
svn path=/rcynic/Makefile; revision=355
-rw-r--r-- | rcynic/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rcynic/Makefile b/rcynic/Makefile index 8e163e79..b1376f45 100644 --- a/rcynic/Makefile +++ b/rcynic/Makefile @@ -3,6 +3,7 @@ OPENSSL_DIR = ../openssl/trunk CFLAGS = -g -I${OPENSSL_DIR}/include -Wall -Werror -Wshadow -Wmissing-prototypes -Wmissing-declarations +LDFLAGS = # -H -Wl,-t @@ -16,7 +17,7 @@ clean: rm -f ${BIN} ${OBJ} ${BIN}: ${OBJ} ${LIB} Makefile - ${CC} -g -o $@ ${OBJ} ${LIB} + ${CC} -g -o $@ ${OBJ} ${LIB} ${LDFLAGS} test: ${BIN} ./${BIN} |