The 'del' command doesn't like forward slashes, so the MSVC nmake 'clean'

target skipped files in subfolders. Updated cpu makefile dependencies.
This commit is contained in:
Volker Ruppert 2017-03-26 15:55:57 +00:00
parent 76b54ecb61
commit dd2d03ec0a
2 changed files with 6 additions and 6 deletions

View File

@ -153,7 +153,7 @@ $(OBJS64): $(BX_INCLUDES)
clean:
@RMCOMMAND@ *.o
@RMCOMMAND@ *.a
@RMCOMMAND@ decoder/*.o
@RMCOMMAND@ decoder@SLASH@*.o
dist-clean: clean
@RMCOMMAND@ Makefile
@ -267,14 +267,14 @@ bmi32.o: bmi32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
descriptor.h decoder/instr.h decoder/ia_opcodes.h lazy_flags.h tlb.h \
icache.h apic.h xmm.h vmx.h cpuid.h stack.h access.h
icache.h apic.h xmm.h vmx.h cpuid.h stack.h access.h scalar_arith.h
bmi64.o: bmi64.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h \
../config.h ../osdep.h ../gui/siminterface.h ../cpudb.h \
../gui/paramtree.h ../memory/memory-bochs.h ../pc_system.h ../gui/gui.h \
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
descriptor.h decoder/instr.h decoder/ia_opcodes.h lazy_flags.h tlb.h \
icache.h apic.h xmm.h vmx.h cpuid.h stack.h access.h
icache.h apic.h xmm.h vmx.h cpuid.h stack.h access.h scalar_arith.h
call_far.o: call_far.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
../cpudb.h ../gui/paramtree.h ../memory/memory-bochs.h ../pc_system.h \
@ -463,7 +463,7 @@ load.o: load.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../bx_debug/debug.h
../instrument/stubs/instrument.h cpu.h decoder/decoder.h i387.h \
fpu/softfloat.h fpu/tag_w.h fpu/status_w.h fpu/control_w.h crregs.h \
descriptor.h decoder/instr.h decoder/ia_opcodes.h lazy_flags.h tlb.h \
icache.h apic.h xmm.h vmx.h cpuid.h stack.h access.h
icache.h apic.h xmm.h vmx.h cpuid.h stack.h access.h simd_int.h
logical16.o: logical16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
../bx_debug/debug.h ../config.h ../osdep.h ../gui/siminterface.h \
../cpudb.h ../gui/paramtree.h ../memory/memory-bochs.h ../pc_system.h \

View File

@ -76,8 +76,8 @@ libcpudb.a: $(CPUDB_OBJS)
$(CPUDB_OBJS): $(BX_INCLUDES)
clean:
@RMCOMMAND@ amd/*.o
@RMCOMMAND@ intel/*.o
@RMCOMMAND@ amd@SLASH@*.o
@RMCOMMAND@ intel@SLASH@*.o
@RMCOMMAND@ *.a
dist-clean: clean