mirror of
https://github.com/dynup/kpatch
synced 2024-12-13 08:54:38 +00:00
d4ab5fab2e
If the kernel updates, make won't detect that the core module needs rebuilding. So always rebuild it.
18 lines
363 B
Makefile
18 lines
363 B
Makefile
include ../Makefile.inc
|
|
|
|
all: clean
|
|
$(MAKE) -C core
|
|
|
|
install:
|
|
$(INSTALL) -d $(MODULESDIR)/$(shell uname -r)/kpatch
|
|
$(INSTALL) -m 644 core/kpatch.ko $(MODULESDIR)/$(shell uname -r)/kpatch
|
|
$(INSTALL) -d $(DATADIR)/patch
|
|
$(INSTALL) -m 644 patch/* $(DATADIR)/patch
|
|
|
|
uninstall:
|
|
$(RM) -R $(MODULESDIR)/*/kpatch
|
|
$(RM) -R $(DATADIR)
|
|
|
|
clean:
|
|
$(MAKE) -C core clean
|