diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2021-09-25 14:10:39 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2021-09-25 14:10:39 +0200 | 
| commit | 8be4f53f8b6b135128fc0b28c5a073770e2f1c90 (patch) | |
| tree | b656f3b7fb9224bd079b070830c9ec4534d1d7a7 | |
| parent | 9ebccdede9556f19596b0b0fc6579bc819027ffe (diff) | |
make install: Add missing dependencies
| -rw-r--r-- | Makefile | 8 | 
1 files changed, 4 insertions, 4 deletions
| @@ -25,20 +25,20 @@ test-x11: all  install: install-man install-doc install-bin install-font install-img  install: install-icon install-examples install-applications -install-man: +install-man: man/feh.1  	@echo installing manuals to ${man_dir}  	@mkdir -p ${man_dir}/man1  	@cp man/feh.1 ${man_dir}/man1  	@chmod 644 ${man_dir}/man1/feh.1 -install-doc: +install-doc: AUTHORS ChangeLog README.md TODO  	@echo installing docs to ${doc_dir}  	@mkdir -p ${doc_dir}  	@cp AUTHORS ChangeLog README.md TODO ${doc_dir}  	@chmod 644 ${doc_dir}/AUTHORS ${doc_dir}/ChangeLog ${doc_dir}/README.md \  		${doc_dir}/TODO -install-bin: +install-bin: src/feh  	@echo installing executables to ${bin_dir}  	@mkdir -p ${bin_dir}  	@cp src/feh ${bin_dir}/feh.tmp @@ -78,7 +78,7 @@ install-examples:  	@cp examples/* ${example_dir}  	@chmod 644 ${example_dir}/* -install-applications: +install-applications: share/applications/feh.desktop  	@echo installing desktop file to ${desktop_dir}  	@mkdir -p ${desktop_dir}  	@cp share/applications/feh.desktop ${desktop_dir} | 
