x86-64helloworld/Makefile
2016-06-03 03:46:33 +02:00

15 lines
139 B
Makefile

AS=as
LINKER=ld
OBJ=src/helloworld.o
%.o: %.asm
$(AS) -o $@ $<
helloworld: $(OBJ)
$(LINKER) -o $@ $^
.PHONY: clean
clean:
rm $(OBJ)