diff options
author | B. Stack <bgstack15@gmail.com> | 2022-10-10 10:34:56 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-10-10 10:34:56 -0400 |
commit | 4767a3eb78e2e8286160000c203d1b91357614f7 (patch) | |
tree | b3ecf8f3ba45c40f95efc8bc024e36cd5a61a8ed /Makefile | |
parent | readd all images (diff) | |
download | fbxkb-orig.tar.gz fbxkb-orig.tar.bz2 fbxkb-orig.zip |
original 0.6 source codeorig
from debian's orig.tar.gz. The original app is from sourceforge:
https://fbxkb.sourceforge.net/index.html
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |