diff options
author | Nao Pross <naopross@thearcway.org> | 2017-10-05 16:09:59 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-10-05 16:09:59 +0200 |
commit | eb169ea5a89909b90794e0388f89d6d372754e46 (patch) | |
tree | ce7e826fd2dd4e4248cb4f1fbf8ce2885c943f49 /sw/z80/tests/ram/makefile | |
parent | Test units are now in their own folder 'z80_test', add programmer cli interface (diff) | |
download | z80uPC-eb169ea5a89909b90794e0388f89d6d372754e46.tar.gz z80uPC-eb169ea5a89909b90794e0388f89d6d372754e46.zip |
Move test units to z80/tests, and drivers are now statically linked
Makefiles for the test units were getting messier, so now drivers
(that need to be tested) are statically compiled in their own
folder under z80/drivers.
The kernel makefile and is now broken since everything has been moved.
Diffstat (limited to '')
-rw-r--r-- | sw/z80/tests/ram/makefile (renamed from sw/z80_tests/ram/makefile) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/z80_tests/ram/makefile b/sw/z80/tests/ram/makefile index 35d7419..b8435a7 100644 --- a/sw/z80_tests/ram/makefile +++ b/sw/z80/tests/ram/makefile @@ -1,7 +1,7 @@ #### # source code settings # -OSNAME := test +OSNAME := ram_test CSOURCES := $(wildcard *.c) |