diff options
author | Tobias Grimm <tobias@e-tobi.loc> | 2008-12-02 22:27:50 +0100 |
---|---|---|
committer | Tobias Grimm <tobias@e-tobi.loc> | 2008-12-02 22:27:50 +0100 |
commit | 08e1b641a8c9db675d79759c450f9827a8d06a31 (patch) | |
tree | b836eb3948fdd918264f3dc5f20a7c6881a64c9d | |
parent | b451fdb5a36c0f749d63d53165cdf4e84a8f476a (diff) | |
download | vdr-plugin-osdteletext-08e1b641a8c9db675d79759c450f9827a8d06a31.tar.gz vdr-plugin-osdteletext-08e1b641a8c9db675d79759c450f9827a8d06a31.tar.bz2 |
Move installation of README and man page from all to install.
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -67,8 +67,6 @@ $(DEPFILE): Makefile ### Targets: all: libvdr-$(PLUGIN).so - @install -d ../../man - @install README ../../man/$(PLUGIN).man libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@ @@ -84,3 +82,7 @@ dist: clean clean: @-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~ + +install: + @install -d ../../man + @install README ../../man/$(PLUGIN).man |