From 5cf69f5b6ce47209590ac97fbf587659205dec17 Mon Sep 17 00:00:00 2001 From: Ivan Tatarinov Date: Thu, 15 Apr 2021 19:29:15 +0300 Subject: [PATCH] software: added explicit prerequisites for `ugophy` in `Makefile`, removed autogenerated `ugoph.tap` --- software/ugophy/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/software/ugophy/Makefile b/software/ugophy/Makefile index 7f55c85..cdf74da 100644 --- a/software/ugophy/Makefile +++ b/software/ugophy/Makefile @@ -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