aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rwxr-xr-x[-rw-r--r--]makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/makefile b/makefile
index 2f38cb0..5cb27a5 100644..100755
--- a/makefile
+++ b/makefile
@@ -21,12 +21,16 @@ DEFAULT_OBJECTS = \
USER_CPU_SRCS = \
$(wildcard src/$(LOGIN)/mips_cpu.cpp) \
$(wildcard src/$(LOGIN)/mips_cpu_*.cpp) \
- $(wildcard src/$(LOGIN)/mips_cpu/*.cpp)
+ $(wildcard src/$(LOGIN)/mips_cpu/*.cpp) \
+ $(wildcard src/$(LOGIN)/mips_cpu_*/*.cpp)
+
USER_TEST_SRCS = \
$(wildcard src/$(LOGIN)/test_mips.cpp) \
$(wildcard src/$(LOGIN)/test_mips_*.cpp) \
- $(wildcard src/$(LOGIN)/test_mips/*.cpp)
+ $(wildcard src/$(LOGIN)/test_mips/*.cpp) \
+ $(wildcard src/$(LOGIN)/test_mips_*/*.cpp)
+
USER_CPU_OBJECTS = $(patsubst %.cpp,%.o,$(USER_CPU_SRCS))
USER_TEST_OBJECTS = $(patsubst %.cpp,%.o,$(USER_TEST_SRCS))