diff options
author | Timo Teras <timo.teras@iki.fi> | 2008-04-21 16:30:10 +0000 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2008-04-21 16:30:10 +0000 |
commit | 823283edca0d8403742999917a4ff0698ad641cb (patch) | |
tree | c023160837e616ca5ff5e85cc754cd3e17bd1d2e /Makefile | |
parent | 951602e551bc56b433f7c6d908998b6289890b09 (diff) | |
download | apk-tools-823283edca0d8403742999917a4ff0698ad641cb.tar.gz apk-tools-823283edca0d8403742999917a4ff0698ad641cb.tar.bz2 apk-tools-823283edca0d8403742999917a4ff0698ad641cb.tar.xz apk-tools-823283edca0d8403742999917a4ff0698ad641cb.zip |
Argument parsing. Some other stuff too.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -22,7 +22,13 @@ INSTALLDIR=$(INSTALL) -d CFLAGS=-O2 -g -D_GNU_SOURCE -Werror -Wall -Wstrict-prototypes -std=gnu99 \ -DAPK_VERSION=\"$(FULL_VERSION)\" -LDFLAGS=-g -lpthread -nopie +LDFLAGS=-g -nopie +LIBS=-lpthread + +ifeq ($(STATIC),yes) +CFLAGS+=-fno-stack-protector +LDFLAGS+=-static +endif DESTDIR= SBINDIR=/usr/sbin |