Added source files.

This commit is contained in:
Nicolás A. Ortega
2016-06-03 02:16:13 +02:00
commit d246f09f37
2 changed files with 31 additions and 0 deletions

14
Makefile Normal file
View File

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