diff options
author | mail_redacted_for_web | 2014-08-12 14:19:46 +0200 |
---|---|---|
committer | mail_redacted_for_web | 2014-08-12 14:19:46 +0200 |
commit | 404295bb75973041ab3316f197a942e8afde220d (patch) | |
tree | beabec1fff26857da3c00590bcbabe17ca65f0d7 /Makefile | |
parent | e3c260a92203c6b10d57d8af0be3df932dda60f6 (diff) | |
download | mp3dir2html-404295bb75973041ab3316f197a942e8afde220d.tar.bz2 |
Makefile: syntax, help content
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -2,13 +2,13 @@ VERSION = 3.81 install: all -all: bin man +all: mbin man -bin: - @cp -v bin/mp3dir2html /usr/local/bin +mbin: + @cp -v bin/mp3dir2html /usr/local/bin/ man: gzip-exists - @cp -v man1/mp3dir2html.1 /usr/local/share/man/man1 + @cp -v man1/mp3dir2html.1 /usr/local/share/man/man1/ @gzip -vf /usr/local/share/man/man1/mp3dir2html.1 gzip-exists: @@ -24,7 +24,7 @@ help: @echo "Syntax : MAKE [target]" @echo @echo "Targets : help\t\t- Displays this help." - @echo " all\t\t- Installs script and compressed manpage." + @echo " install\t- Installs script and compressed manpage." @echo " bin\t\t- Installs only the script." @echo " man\t\t- Only installs the compressed manpage." @echo " uninstall\t- Deletes all files from your system." |