1#
2# Makefile for GCOV profiling kernel module
3#
4
5#KERNELDIR := /usr/src/linux-2.5.64-gcov
6CFLAGS := $(CFLAGS) -Wall
7
8ifneq ($(KERNELRELEASE),)
9
10obj-m	:= tbase.o
11else
12KDIR	:= /lib/modules/$(shell uname -r)/build
13PWD	:= $(shell pwd)
14
15default:
16	$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
17#	$(MAKE) -C $(KERNELDIR) SUBDIRS=$(PWD) modules
18endif
19
20clean:
21	rm -f tbase.o 2>/dev/null || true
22
23