summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/Makefile
blob: 6f120362e945a5b4bbaa44545a41f2e758e78e54 (plain)
1
2
3
4
5
6
7
8
9
10

EXECUTABLES=hello

all: $(EXECUTABLES)

hello: hello.c
	$(ARM_CROSS)gcc $< -o $@

clean:
	rm -f $(EXECUTABLES)