kpatch/man/Makefile
Josh Poimboeuf 1631d52fcf man: don't delete source files when compressing man files
Fix the issue where a "make install" deletes the man source files.
2014-03-27 14:12:44 -07:00

17 lines
285 B
Makefile

include ../Makefile.inc
all:
install: all
$(INSTALL) -d $(MANDIR)
gzip -k -9 kpatch.1
$(INSTALL) -m 644 kpatch.1.gz $(MANDIR)
gzip -k -9 kpatch-build.1
$(INSTALL) -m 644 kpatch-build.1.gz $(MANDIR)
uninstall:
$(RM) $(MANDIR)/kpatch.1*
$(RM) $(MANDIR)/kpatch-build.1*
clean: