From e4303dbcf1d9057114f42a26ddb4555b34b24cbc Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Sun, 17 Dec 2023 22:18:38 +0800 Subject: [PATCH] cube: rename to macaw_cube --- example/example.mk | 8 ++++---- example/{cube.cpp => macaw_cube.cpp} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename example/{cube.cpp => macaw_cube.cpp} (100%) diff --git a/example/example.mk b/example/example.mk index e05f576..3c1655f 100644 --- a/example/example.mk +++ b/example/example.mk @@ -70,8 +70,8 @@ TRANSLUCENCY_OBJ = \ example/translucency.elf: LDSCRIPT = $(LIB)/alt.lds example/translucency.elf: $(START_OBJ) $(TRANSLUCENCY_OBJ) -CUBE_OBJ = \ - example/cube.o \ +MACAW_CUBE_OBJ = \ + example/macaw_cube.o \ vga.o \ holly/core.o \ holly/region_array.o \ @@ -79,8 +79,8 @@ CUBE_OBJ = \ holly/ta_fifo_polygon_converter.o \ macaw.data.o -example/cube.elf: LDSCRIPT = $(LIB)/alt.lds -example/cube.elf: $(START_OBJ) $(CUBE_OBJ) +example/macaw_cube.elf: LDSCRIPT = $(LIB)/alt.lds +example/macaw_cube.elf: $(START_OBJ) $(MACAW_CUBE_OBJ) MAPLE_DEVICE_REQUEST_OBJ = \ example/maple_device_request.o \ diff --git a/example/cube.cpp b/example/macaw_cube.cpp similarity index 100% rename from example/cube.cpp rename to example/macaw_cube.cpp