aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9de5446..282eb88 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,10 @@ endif
TARGET = fbxkb
$(TARGET): $(OBJ)
- $(CC) $(LDFLAGS) $(OBJ) -Wl,--as-needed $(LIBS) -o $@
+ $(CC) $(LDFLAGS) $(LIBS) $(OBJ) -o $@
+ifeq (,$(DEVEL))
+ strip $@
+endif
all: $(TARGET)
bgstack15