Updated build dependencies in calculator Makefile.
[ned1] / software / 4func_calculator / Makefile
# © 2018 Aaron Taylor <ataylor at subgeniuskitty dot com>
# 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)