maxvalue/Makefile
Nicolás A. Ortega 9733faf62b
Using makefiles.
2016-05-30 04:03:41 +02:00

16 lines
151 B
Makefile

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