summary refs log blame commit diff
path: root/pkgs/os-specific/linux/trelay/Makefile
blob: 3206728dfbf7fa2c8ccdd9a8fef41327ae265076 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                         
KERNELRELEASE ?= $(shell uname -r)
KERNEL_DIR  ?= /lib/modules/$(KERNELRELEASE)/build
PWD := $(shell pwd)

obj-m := trelay.o

all:
	$(MAKE) -C $(KERNEL_DIR) M=$(PWD) modules

install:
	$(MAKE) -C $(KERNEL_DIR) M=$(PWD) modules_install

clean:
	$(MAKE) -C $(KERNEL_DIR) M=$(PWD) clean