From fbe9cf3de729a186a7f6365ed2930c4073f8c149 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Tue, 5 Jul 2022 11:08:17 +0300 Subject: makefile: allow uxnasm to be used as an assembler --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d52785f..d6eb110 100644 --- a/Makefile +++ b/Makefile @@ -5,11 +5,12 @@ OBJ = $(SRC:.tal=.rom) CLEANFILES = $(OBJ) UXNASM = uxncli ~/roms/drifblim.rom +# UXNASM = uxnasm all: $(OBJ) .tal.rom: - $(UXNASM) $< + $(UXNASM) $< $@ $(OBJ): $(SRC) -- cgit v1.2.3