From 1ad8dd7634608a7645a5f1869d344a337c16240e Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sat, 14 Aug 2021 14:17:52 -0700 Subject: [PATCH] DSPSpy: Remove build.sh and sbuild.sh This also removes the emu folder from the Makefile, and the Config.h file. I'm not entirely sure what build.sh was for, but my best guess is that it was some kind of tool to run emulated DSP code at the same time as the actual DSP code and compare the results. I don't know if it ever worked, but it certainly doesn't work now. --- Source/DSPSpy/Config.h | 4 ---- Source/DSPSpy/Makefile | 2 +- Source/DSPSpy/build.sh | 6 ------ Source/DSPSpy/sbuild.sh | 4 ---- 4 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 Source/DSPSpy/Config.h delete mode 100644 Source/DSPSpy/build.sh delete mode 100644 Source/DSPSpy/sbuild.sh diff --git a/Source/DSPSpy/Config.h b/Source/DSPSpy/Config.h deleted file mode 100644 index 9790da1b56..0000000000 --- a/Source/DSPSpy/Config.h +++ /dev/null @@ -1,4 +0,0 @@ -// Copyright 2003 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -// Dummy file for common to compile diff --git a/Source/DSPSpy/Makefile b/Source/DSPSpy/Makefile index 6ab9c54535..df6a27aa55 100644 --- a/Source/DSPSpy/Makefile +++ b/Source/DSPSpy/Makefile @@ -23,7 +23,7 @@ include $(DEVKITPPC)/$(HW_TYPE)_rules #--------------------------------------------------------------------------------- TARGET := $(notdir $(CURDIR))_$(HW_TYPE) BUILD := build -SOURCES := . emu +SOURCES := . DATA := data INCLUDES := include ../Core/Common . diff --git a/Source/DSPSpy/build.sh b/Source/DSPSpy/build.sh deleted file mode 100644 index a6fbaf9015..0000000000 --- a/Source/DSPSpy/build.sh +++ /dev/null @@ -1,6 +0,0 @@ -../../Binary/x64/DSPTool.exe -h dsp_code tests/mul_test.ds -mkdir emu -cp ../Core/Core/DSP/*.cpp emu -cp ../Core/Core/DSP/*.h emu -make - diff --git a/Source/DSPSpy/sbuild.sh b/Source/DSPSpy/sbuild.sh deleted file mode 100644 index 80038bf9f5..0000000000 --- a/Source/DSPSpy/sbuild.sh +++ /dev/null @@ -1,4 +0,0 @@ -../../Binary/x64/DSPTool.exe -h dsp_code tests/mul_test.ds -rm -rf emu -make -