diff options
author | Frank Neumann <fnu@yavdr.org> | 2017-05-24 11:28:06 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-05-24 11:28:06 +0200 |
commit | 0eaad2e0e9d7672182ac638c0243d5da8d64dc53 (patch) | |
tree | 013eccc4498c950fe4be8f3047b2df898d337d62 /Makefile | |
parent | 8a391eb9aab910ada9067b94f67da397524ed215 (diff) | |
download | vdr-plugin-text2skin-0eaad2e0e9d7672182ac638c0243d5da8d64dc53.tar.gz vdr-plugin-text2skin-0eaad2e0e9d7672182ac638c0243d5da8d64dc53.tar.bz2 |
Detach STRIP from DEBUG flag (thx Tobias Grimm).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,6 +1,6 @@ #DEBUG=1 #BENCH=1 -STRIP=strip +STRIP ?= /bin/true # BEWARE that you can not use GraphTFT together with # Text2Skin if you use Imlib2! (That's why I actually implemented ImageMagick) @@ -139,9 +139,7 @@ i18n: $(I18Npo:%.po=$(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo) libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@ @cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION) -ifndef DEBUG $(STRIP) $(LIBDIR)/$@.$(APIVERSION) -endif dist: $(addprefix $(PODIR)/,$(I18Npo)) clean @-rm -rf $(TMPDIR)/$(ARCHIVE) |