diff options
author | Jochen Dolze <vdr@dolze.de> | 2012-02-06 19:11:57 +0100 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2012-02-06 19:11:57 +0100 |
commit | 3ddd1df1ead715a7465daa8ea628e10c9ecc2034 (patch) | |
tree | d9afd25154f55a25cd8b666148da4297e7877b34 | |
parent | 23c1e169dcbc112e114d03fbac9f60ddbff68856 (diff) | |
download | vdr-plugin-markad-3ddd1df1ead715a7465daa8ea628e10c9ecc2034.tar.gz vdr-plugin-markad-3ddd1df1ead715a7465daa8ea628e10c9ecc2034.tar.bz2 |
Changed Makefile in plugin directory to close bug #840
-rw-r--r-- | plugin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/Makefile b/plugin/Makefile index cfe6941..f5aab8b 100644 --- a/plugin/Makefile +++ b/plugin/Makefile @@ -94,15 +94,15 @@ $(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo cp $< $@ .PHONY: i18n -i18n: $(I18Nmsgs) $(I18Npot) +i18n: $(I18Npot) ### Targets: -install: +install: all $(I18Nmsgs) + cp --remove-destination libvdr-$(PLUGIN).so $(LIBDIR)/libvdr-$(PLUGIN).so.$(APIVERSION) libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@ - @cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION) clean: @-rm -f $(OBJS) $(DEPFILE) *.so *.so.* *.tgz core* *~ $(PODIR)/*.mo $(PODIR)/*.pot |