aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile5
-rw-r--r--apps/chess/Makefile3
-rw-r--r--apps/idle/Makefile3
-rw-r--r--apps/init/Makefile3
-rw-r--r--apps/test/Makefile3
-rw-r--r--apps/wm/Makefile3
6 files changed, 18 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 98bec47..2884040 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -1,11 +1,12 @@
# MIT License, Copyright (c) 2020 Marvin Borner
-CFLAGS = $(CFLAGS_DEFAULT) -I$(LIBS)/ -I$(LIBS)/libc/inc/ -pie -fPIE -fPIC -DUSER
+CFLAGS = $(CFLAGS_DEFAULT) -I$(LIBS)/ -I$(LIBS)/libc/inc/ -DUSER
LDFLAGS = --section-start=.text=0x42000000 -L$(BUILD)
DIRS = $(wildcard */.)
-ifneq ($(DEBUG), 1)
+ifeq ($(CONFIG_USER_PIE), true)
LDFLAGS += -pie -no-dynamic-linker
+ CFLAGS += -pie -fPIE -fPIC
endif
export
diff --git a/apps/chess/Makefile b/apps/chess/Makefile
index b538807..e84f65f 100644
--- a/apps/chess/Makefile
+++ b/apps/chess/Makefile
@@ -5,6 +5,9 @@ OBJS = chess.o
all: $(OBJS)
@mkdir -p $(BUILD)/apps/chess/
@$(LD) -o $(BUILD)/apps/chess/exec $(LDFLAGS) $^ -lgui -ltxt -lc
+ifeq ($(CONFIG_STRIP), true)
+ @$(ST) --strip-all $(BUILD)/apps/chess/exec
+endif
clean:
@$(RM) -f $(OBJS)
diff --git a/apps/idle/Makefile b/apps/idle/Makefile
index 28145b4..f4f9730 100644
--- a/apps/idle/Makefile
+++ b/apps/idle/Makefile
@@ -5,6 +5,9 @@ OBJS = idle.o
all: $(OBJS)
@mkdir -p $(BUILD)/apps/idle/
@$(LD) -o $(BUILD)/apps/idle/exec $(LDFLAGS) $^ -lc
+ifeq ($(CONFIG_STRIP), true)
+ @$(ST) --strip-all $(BUILD)/apps/idle/exec
+endif
clean:
@$(RM) -f $(OBJS)
diff --git a/apps/init/Makefile b/apps/init/Makefile
index 3547797..68038d0 100644
--- a/apps/init/Makefile
+++ b/apps/init/Makefile
@@ -5,6 +5,9 @@ OBJS = init.o
all: $(OBJS)
@mkdir -p $(BUILD)/apps/init/
@$(LD) -o $(BUILD)/apps/init/exec $(LDFLAGS) $^ -lc
+ifeq ($(CONFIG_STRIP), true)
+ @$(ST) --strip-all $(BUILD)/apps/init/exec
+endif
clean:
@$(RM) -f $(OBJS)
diff --git a/apps/test/Makefile b/apps/test/Makefile
index 78a913d..e80b54b 100644
--- a/apps/test/Makefile
+++ b/apps/test/Makefile
@@ -5,6 +5,9 @@ OBJS = test.o fuzz.o
all: $(OBJS)
@mkdir -p $(BUILD)/apps/test/
@$(LD) -o $(BUILD)/apps/test/exec $(LDFLAGS) $^ -lc
+ifeq ($(CONFIG_STRIP), true)
+ @$(ST) --strip-all $(BUILD)/apps/test/exec
+endif
clean:
@$(RM) -f $(OBJS)
diff --git a/apps/wm/Makefile b/apps/wm/Makefile
index abceef7..8fb0096 100644
--- a/apps/wm/Makefile
+++ b/apps/wm/Makefile
@@ -5,6 +5,9 @@ OBJS = wm.o
all: $(OBJS)
@mkdir -p $(BUILD)/apps/wm/
@$(LD) -o $(BUILD)/apps/wm/exec $(LDFLAGS) $^ -lgui -ltxt -lc
+ifeq ($(CONFIG_STRIP), true)
+ @$(ST) --strip-all $(BUILD)/apps/wm/exec
+endif
clean:
@$(RM) -f $(OBJS)