blob: 820badb27d85d6017c7d49db3cd912f13b9d0fc9 [file] [log] [blame]
CFLAGS=-O0 -g
OUTPUTS=noploop noploop_branch.txt
all: $(OUTPUTS)
noploop: noploop.c
noploop_branch.txt: noploop
./find_loop_instructions.py $< > $@
clean:
rm -rf $(OUTPUTS)