mirror of
https://github.com/dynup/kpatch
synced 2025-01-07 05:29:29 +00:00
5932f0d083
Make it easy to clean up an install Signed-off-by: Seth Jennings <sjenning@redhat.com>
13 lines
145 B
Makefile
13 lines
145 B
Makefile
include ../Makefile.inc
|
|
|
|
all:
|
|
|
|
install: all
|
|
$(INSTALL) -d $(SBINDIR)
|
|
$(INSTALL) kpatch $(SBINDIR)
|
|
|
|
uninstall:
|
|
$(RM) $(SBINDIR)/kpatch
|
|
|
|
clean:
|