summaryrefslogtreecommitdiffstats
path: root/runtime/probes/Makefile.template
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/probes/Makefile.template')
-rw-r--r--runtime/probes/Makefile.template21
1 files changed, 0 insertions, 21 deletions
diff --git a/runtime/probes/Makefile.template b/runtime/probes/Makefile.template
deleted file mode 100644
index 5d770e95..00000000
--- a/runtime/probes/Makefile.template
+++ /dev/null
@@ -1,21 +0,0 @@
-# Makefile
-PWD := $(shell pwd)
-RT := $(PWD)/../..
-KVERSION := $(shell uname -r)
-KDIR := /lib/modules/$(KVERSION)/build include
-
-FLAGS := -I $(RT) RELAYFS
-
-DFLAGS := $(FLAGS) -D DEBUG
-
-obj-m := XXX.o
-
-default:
- $(MAKE) V=1 -C $(KDIR) M=$(PWD) RT=$(RT) EXTRA_CFLAGS="$(FLAGS)" modules
-
-debug:
- $(MAKE) V=1 -C $(KDIR) M=$(PWD) RT=$(RT) EXTRA_CFLAGS="$(DFLAGS)" modules
-
-
-clean:
- /bin/rm -rf *.o *.o.d *.ko *~ *.mod.c .*.cmd .tmp_versions