Files
AK2-ARMv7lab/hello/Makefile
T
Jan Potocki 5f9799c55c Repo init
2020-06-22 17:31:00 +02:00

11 lines
115 B
Makefile

all: hello
hello: hello.o
ld hello.o -o hello
hello.o: hello.s
as hello.s -o hello.o
clean:
rm hello.o hello