Skip to content

Commit

Permalink
change makefile removing group and adding -f to ln
Browse files Browse the repository at this point in the history
  • Loading branch information
iandstanley committed Jun 10, 2021
1 parent 9efd1db commit 0ed682d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ install: manpages install_files

install_files:
@echo do the install stuff
sudo install -o root -g root -m 755 notes /usr/local/bin/notes
sudo ln -s /usr/local/bin/notes /usr/local/bin/notebook
sudo install -o root -m 755 notes /usr/local/bin/notes
sudo ln -sf /usr/local/bin/notes /usr/local/bin/notebook

manpages:
@echo create the docs files to be installed
gzip -c docs/notes.1 > tmp/notes.1.gz
gzip -c docs/notebook.1 > tmp/notebook.1.gz
sudo install -o root -g root -m 644 tmp/notes.1.gz /usr/share/man/man1
sudo install -o root -g root -m 644 tmp/notebook.1.gz /usr/share/man/man1
sudo install -o root -m 644 tmp/notes.1.gz /usr/share/man/man1
sudo install -o root -m 644 tmp/notebook.1.gz /usr/share/man/man1

clean:
@echo clean up after build
Expand Down

0 comments on commit 0ed682d

Please sign in to comment.