Enable all compiler warnings Use defaults compiler and linker - clic - Clic is … | |
git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 27321d7d6a66be5fd4f18a8acc515387e5bb1564 | |
parent 52f1c9d1f1e4e2748ab80436e668238d41918077 | |
Author: killruana <[email protected]> | |
Date: Sat, 11 Nov 2017 13:28:08 +0100 | |
Enable all compiler warnings | |
Use defaults compiler and linker | |
Diffstat: | |
M Makefile | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -17,8 +17,8 @@ standalone: clic.lisp extension make-binary.lisp | |
${MAKE} -e LISP=sbcl | |
extension: extension.c | |
- cc -fPIC -c extension.c | |
- ld -shared -o extension.so extension.o | |
+ ${CC} -Wall -fPIC -c extension.c | |
+ ${LD} -shared -o extension.so extension.o | |
install: ${BIN} | |
@echo installing executable to "${DESTDIR}${PREFIX}/bin" |