From 3125154316a235574579e9d25985236bd799982b Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sun, 29 Jan 2023 17:09:43 -0400 Subject: Add `Makefile`, and `obj_files.mk` This makefile is based on the one from the Super Mario Sunshine decompilation project. https://github.com/doldecomp/sms --- obj_files.mk | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 obj_files.mk (limited to 'obj_files.mk') diff --git a/obj_files.mk b/obj_files.mk new file mode 100644 index 0000000..2e65fa0 --- /dev/null +++ b/obj_files.mk @@ -0,0 +1,6 @@ +O_FILES := $(BUILD_DIR)/src/main.o \ + $(BUILD_DIR)/src/pso/TMainTask.o \ + $(BUILD_DIR)/src/pso/TObject.o \ + $(BUILD_DIR)/src/Runtime/global_destructor_chain.o \ + $(BUILD_DIR)/src/Dolphin/os/__start.o \ + $(BUILD_DIR)/src/Dolphin/os/__ppc_eabi_init.o -- cgit v1.2.3-13-gbd6f