diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-10-29 15:19:58 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-10-29 15:19:58 +0000 |
commit | c0bdcba56e12723440598903fae42b2a60b1b573 (patch) | |
tree | 5bc652f19fe0f7e57b449244c375462f8833f4e5 /Makefile | |
parent | 419f58c305c1fabe1955d743d450808038a208cb (diff) | |
download | skalibs-c0bdcba56e12723440598903fae42b2a60b1b573.tar.xz |
Add pie test, don't double build on pie
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 \ |