2
0
This repository has been archived on 2025-11-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

21 lines
336 B
Makefile

#KERNELDIR := ../../../linux
ifeq ($(KERNELPATH), )
KERNELPATH := ../../../linux-2.6.x
else
endif
obj-m += xt_pctl.o
all:
$(MAKE) -C $(KERNELPATH) M=`pwd` modules
ifneq ($(STRIP_KERNEL),)
$(STRIP_KERNEL) --strip-unneeded xt_pctl.ko
else
$(STRIP) --strip-unneeded xt_pctl.ko
endif
clean:
$(MAKE) -C $(KERNELPATH) M=`pwd` clean