summaryrefslogtreecommitdiffstats
path: root/runtime/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/Makefile')
-rw-r--r--runtime/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
new file mode 100644
index 00000000..1b654f67
--- /dev/null
+++ b/runtime/Makefile
@@ -0,0 +1,15 @@
+#
+# Makefile for SystemTap runtime and example probes
+#
+
+all:
+ make -w -C relayfs
+ make -w -C transport
+ make -w -C stpd
+ cd probes; ./build
+
+clean:
+ make -w -C relayfs clean
+ make -w -C transport clean
+ make -w -C stpd clean
+ cd probes; ./build clean