From 8dc7a27cdbf1d4917c3f771123af5f84da532aed Mon Sep 17 00:00:00 2001 From: "(Tim) Efthimis Kritikos" Date: Tue, 5 Mar 2024 18:50:37 +0000 Subject: [PATCH] Build system: Added all possible roms to default build recipe --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9e7b8f9..7b65fe3 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ QUIET=1 ADDRESS_SANITIZE=1 USE_AALIB=1 -all:first OBJECT_FILES=gui.o gui_display.o gui_internals.o main.o simdata.o assembly.o cpu.o MAIN_ROM=programs/utah_teapot.rom @@ -10,6 +9,8 @@ ROMS=test.rom ${MAIN_ROM} programs/cube.rom UTAH_TEAPOT_ASCII_STL=assets/Utah_teapot_ascii.stl AXIL_PROGS=auxiliary_progs/stl_to_source_code +all:first ${ROMS} + make.deps: $(subst .o,.c,${OBJECT_FILES}) $(wildcard *.h) @$(CC) -MM $(subst .o,.c,${OBJECT_FILES}) > make.deps