mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-15 13:05:35 +00:00
I manually synchronize with Kheperix code.
This commit is contained in:
parent
aee3e05e4b
commit
687b9c5a74
@ -14,9 +14,6 @@ SRCS := src
|
||||
# Where Basilisk II directory can be found
|
||||
B2_TOPDIR := ../BasiliskII
|
||||
|
||||
# Where Kheperix directory can be found
|
||||
KPX_TOPDIR := ../kheperix
|
||||
|
||||
default: help
|
||||
|
||||
help:
|
||||
@ -24,7 +21,6 @@ help:
|
||||
@echo "The following targets are available:"
|
||||
@echo " tarball source tarball ($(SRCARCHIVE))"
|
||||
@echo " links create links to Basilisk II sources"
|
||||
@echo " kpx_cpu synchronize with Kheperix CPU emulator"
|
||||
|
||||
clean:
|
||||
-rm -f $(SRCARCHIVE)
|
||||
@ -70,33 +66,3 @@ links:
|
||||
echo $$i; \
|
||||
ln -sf $${PREFIX}$(B2_TOPDIR)/src/$$i src/$$i; \
|
||||
done;
|
||||
|
||||
#
|
||||
# Synchronize with Kheperix CPU emulator"
|
||||
#
|
||||
kpx_cpu:
|
||||
@list='include/basic-blockinfo.hpp \
|
||||
include/basic-cpu.hpp \
|
||||
include/basic-plugin.hpp \
|
||||
include/task-plugin.hpp \
|
||||
include/block-alloc.hpp \
|
||||
src/cpu/block-cache.hpp \
|
||||
src/cpu/vm.hpp \
|
||||
src/cpu/ppc/ppc-cpu.hpp \
|
||||
src/cpu/ppc/ppc-cpu.cpp \
|
||||
src/cpu/ppc/ppc-decode.cpp \
|
||||
src/cpu/ppc/ppc-execute.cpp \
|
||||
src/cpu/ppc/genexec.pl \
|
||||
src/cpu/ppc/ppc-bitfields.hpp \
|
||||
src/cpu/ppc/ppc-blockinfo.hpp \
|
||||
src/cpu/ppc/ppc-config.hpp \
|
||||
src/cpu/ppc/ppc-operands.hpp \
|
||||
src/cpu/ppc/ppc-operations.hpp \
|
||||
src/cpu/ppc/ppc-registers.hpp \
|
||||
src/test/test-powerpc.cpp'; \
|
||||
for i in $$list; do \
|
||||
echo $$i; \
|
||||
mkdir -p src/kpx_cpu/`dirname $$i`; \
|
||||
cp -f $(KPX_TOPDIR)/$$i src/kpx_cpu/$$i; \
|
||||
/bin/true ln -sf $$i src/kpx_cpu/`basename $$i`; \
|
||||
done;
|
||||
|
Loading…
Reference in New Issue
Block a user