summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-10-29 15:19:58 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-10-29 15:19:58 +0000
commitc0bdcba56e12723440598903fae42b2a60b1b573 (patch)
tree5bc652f19fe0f7e57b449244c375462f8833f4e5 /Makefile
parent419f58c305c1fabe1955d743d450808038a208cb (diff)
downloadskalibs-c0bdcba56e12723440598903fae42b2a60b1b573.tar.xz
Add pie test, don't double build on pie
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f8b1a0a..65b9619 100644
--- a/Makefile
+++ b/Makefile
@@ -34,8 +34,12 @@ INSTALL := ./tools/install.sh
TYPES := size uid gid pid time dev ino
ALL_SRCS := $(wildcard src/lib*/*.c)
-ALL_SOBJS := $(ALL_SRCS:%.c=%.o)
ALL_DOBJS := $(ALL_SRCS:%.c=%.lo)
+ifeq ($(strip $(DEFAULT_PIE)),)
+ALL_SOBJS := $(ALL_SRCS:%.c=%.o)
+else
+ALL_SOBJS := $(ALL_DOBJS)
+endif
ALL_LIBS := $(SHARED_LIBS) $(STATIC_LIBS)
BUILT_INCLUDES := \
src/include/$(package)/sysdeps.h \