diff options
-rw-r--r-- | plugin/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugin/Makefile b/plugin/Makefile index f5aab8b..c5a95c2 100644 --- a/plugin/Makefile +++ b/plugin/Makefile @@ -94,15 +94,16 @@ $(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo cp $< $@ .PHONY: i18n -i18n: $(I18Npot) +i18n: $(I18Nmsgs) $(I18Npot) ### Targets: -install: all $(I18Nmsgs) +install: all cp --remove-destination libvdr-$(PLUGIN).so $(LIBDIR)/libvdr-$(PLUGIN).so.$(APIVERSION) libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@ + cp --remove-destination libvdr-$(PLUGIN).so $(LIBDIR)/libvdr-$(PLUGIN).so.$(APIVERSION) clean: @-rm -f $(OBJS) $(DEPFILE) *.so *.so.* *.tgz core* *~ $(PODIR)/*.mo $(PODIR)/*.pot |