From 4767a3eb78e2e8286160000c203d1b91357614f7 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Mon, 10 Oct 2022 10:34:56 -0400 Subject: original 0.6 source code from debian's orig.tar.gz. The original app is from sourceforge: https://fbxkb.sourceforge.net/index.html --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit