X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=Makefile;h=97aa044ed31f8b0358d87ca18090ff5ffd2aef83;hb=d1073645c6e61a13ace893d0f3bb1d4c99f2618c;hp=04471df53cc60432f087fae524a61511681ec1cc;hpb=384193ea185181ef94aff22832b878f3bb8fd506;p=procprotect.git diff --git a/Makefile b/Makefile index 04471df..97aa044 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,24 @@ obj-m += procprotect.o -all: - make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules +KVER=$(shell uname -r) +ARCH=$(shell uname -m) + +# Is there an easy way of fetching this automatically, short of mapping /etc/redhat-release +DIST=fc18 + +ifeq ($(wildcard /lib/modules/$(KVER)/build),) + KVER=3.10.6-100.$(DIST).$(ARCH) +endif + +all: + make -C /lib/modules/$(KVER)/build M=$(PWD) modules clean: - make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean + make -C /lib/modules/$(KVER)/build M=$(PWD) clean + +install: + install -D -m 755 procprotect.ko /lib/modules/$(KVER)/net/procprotect/procprotect.ko + mkdir -p /etc/modules-load.d + install -m 644 procprotect.conf /etc/modules-load.d/procprotect.conf + install -m 644 procprotect.service /usr/lib/systemd/system/procprotect.service + install -m 755 procprotect.init /usr/sbin/procprotect.init