Skip to content

prun: Add documentation in markdown format #201

Merged
merged 6 commits into from
Aug 16, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
Makefile: Shut up "make clean"
Use `-f` flag of `rm` to avoid error messages from `make clean` when the
targets files don't exist.
donald committed Aug 12, 2021
commit fad0b5454a6d4788d9133a348e7039197b22316b
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -69,7 +69,7 @@ manpages += prun/prun.1 prun/pman.1 prun/ptype.1
all: $(manpages)

clean:
@rm $(manpages)
@rm -f $(manpages)

install: all
@prefix="$(prefix)" usr_prefix="$(usr_prefix)" usrlocal_prefix="$(usrlocal_prefix)" \