summaryrefslogtreecommitdiff
path: root/python/examples/zero_init/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/zero_init/Makefile')
-rw-r--r--python/examples/zero_init/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/python/examples/zero_init/Makefile b/python/examples/zero_init/Makefile
new file mode 100644
index 0000000..92f29b7
--- /dev/null
+++ b/python/examples/zero_init/Makefile
@@ -0,0 +1,10 @@
+all: default instrumented
+
+default: test.c
+ gcc -O0 $^ -o $@
+
+instrumented: test.c
+ dietcc -O0 $^ -o $@ --dietc-pass $(PWD)/dietpass
+
+clean:
+ rm -f default instrumented
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback