software: added explicit prerequisites for `ugophy` in `Makefile`, removed autogenerated `ugoph.tap`

This commit is contained in:
Ivan Tatarinov 2021-04-15 19:29:15 +03:00
parent 5449931173
commit 5cf69f5b6c
1 changed files with 3 additions and 3 deletions

View File

@ -7,9 +7,9 @@ include ../../sdk/common.mk
.PHONY: all
all: ugoph.bin
ugoph.bin: *.asm
sjasmplus main.asm
ugoph.bin ugoph.tap: main.asm tscreen.asm keyboard.asm utils.asm wifi.asm gopher.asm render.asm textrender.asm uart.asm ring.asm esxdos.asm vtpl.asm
sjasmplus $<
.PHONY: clean
clean:
rm -f ugoph.bin
rm -f ugoph.bin ugoph.tap