16 lines
158 B
Makefile
Raw Permalink Normal View History

2016-06-03 02:16:13 +02:00
AS=as
LINKER=ld
2016-06-03 03:46:33 +02:00
OBJ=src/helloworld.o
2016-06-03 02:16:13 +02:00
%.o: %.asm
$(AS) -o $@ $<
helloworld: $(OBJ)
2016-06-03 16:39:35 +02:00
mkdir -p bin/
$(LINKER) -o bin/$@ $^
2016-06-03 02:16:13 +02:00
.PHONY: clean
clean:
rm $(OBJ)