power/Makefile
Nicolás A. Ortega 23080fe35a
Added main files.
2016-06-05 16:44:32 +02:00

16 lines
150 B
Makefile

AS=as
LINKER=ld
OBJ=src/power.o
%.o: %.asm
$(AS) -g -o $@ $<
power: $(OBJ)
mkdir -p bin
$(LINKER) -o bin/$@ $^
.PHONY: clean
clean:
rm $(OBJ)