summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--runtime/staprun/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/runtime/staprun/Makefile b/runtime/staprun/Makefile
deleted file mode 100644
index 097aead3..00000000
--- a/runtime/staprun/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-CFLAGS = -Wall -std=gnu99 -D_GNU_SOURCE -fexceptions -Wall -Werror -Wshadow -Wunused -Wp,-D_FORTIFY_SOURCE=2
-
-all: staprun stap_merge
-
-staprun: staprun.c mainloop.c relay.c ctl.c symbols.c ../transport/transport_msgs.h staprun.h
- gcc -O3 $(CFLAGS) -o staprun staprun.c mainloop.c symbols.c ctl.c relay.c relay_old.c -lpthread
-
-stap_merge: stap_merge.c
- gcc -O3 $(CFLAGS) -o stap_merge stap_merge.c
-
-debug: staprun.c mainloop.c relay.c ctl.c symbols.c ../transport/transport_msgs.h staprun.h
- gcc -g -D DEBUG $(CFLAGS) -o staprun staprun.c mainloop.c symbols.c ctl.c relay.c relay_old.c -lpthread
-
-clean:
- /bin/rm -f staprun stap_merge *.o *~