# © 2018 Aaron Taylor # See LICENSE.txt file for copyright and license details. include ../../common/main.mk SRC = calc.asm BIN = $(SRC:.asm=.bin) all: calc calc: $(NEDASM) -o $(BIN) -i $(SRC) clean: @rm -f $(BIN) sim: calc $(NEDSIM) -i $(BIN)