summaryrefslogtreecommitdiff
path: root/python/examples/zero_init/Makefile
blob: 92f29b733b9f2d3dd590a5a643019678c3785402 (plain)
1
2
3
4
5
6
7
8
9
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