Skip to content

Commit

Permalink
Add man page and configuration file to Makefile install.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdubbs committed Dec 6, 2024
1 parent f735493 commit a0e076b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ temps.o: temps.c sysmond.h
utils.o: utils.c utils.h

install:
cp -v sysmond /usr/sbin
install -vm744 sysmond /usr/sbin
install -vm644 sysmond.8 /usr/share/man/man8
install -vm644 sysmond.conf /etc/sysmond.conf.default
ifeq (,$(wildcard /etc/sysmond.conf))
install -vm644 sysmond.conf /etc
endif

clean:
rm -f $(objects) sysmond
Expand Down

0 comments on commit a0e076b

Please sign in to comment.