mirror of
https://github.com/dynup/kpatch
synced 2025-01-08 22:29:34 +00:00
1631d52fcf
Fix the issue where a "make install" deletes the man source files.
17 lines
285 B
Makefile
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:
|