You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
466 B
25 lines
466 B
#
|
|
# Makefile for GCOV profiling kernel module
|
|
#
|
|
|
|
EXTRA_CFLAGS := -Wall -W -Wno-unused-parameter
|
|
|
|
ifneq ($(KERNELRELEASE),)
|
|
|
|
obj-m := nlsTest.o
|
|
else
|
|
KDIR := /lib/modules/$(shell uname -r)/build
|
|
PWD := $(shell pwd)
|
|
|
|
default:
|
|
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
|
|
${CC} $(EXTRA_CFLAGS) -o userBlockNLS userBlockNLS.c
|
|
# $(MAKE) -C $(KERNELDIR) SUBDIRS=$(PWD) modules
|
|
|
|
clean:
|
|
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) clean
|
|
rm -f modules.order
|
|
rm -f userBlockNLS
|
|
|
|
endif
|