mirror of
https://github.com/holub/mame
synced 2025-05-05 13:54:42 +03:00
Renamed one more include of .c in h file, and updated makemak (nw)
This commit is contained in:
parent
6125d95e1d
commit
e44c5d1298
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -473,7 +473,7 @@ src/emu/cpu/h6280/6280dasm.c svneol=native#text/plain
|
|||||||
src/emu/cpu/h6280/h6280.c svneol=native#text/plain
|
src/emu/cpu/h6280/h6280.c svneol=native#text/plain
|
||||||
src/emu/cpu/h6280/h6280.h svneol=native#text/plain
|
src/emu/cpu/h6280/h6280.h svneol=native#text/plain
|
||||||
src/emu/cpu/h6280/h6280ops.h svneol=native#text/plain
|
src/emu/cpu/h6280/h6280ops.h svneol=native#text/plain
|
||||||
src/emu/cpu/h6280/tblh6280.c svneol=native#text/plain
|
src/emu/cpu/h6280/tblh6280.inc svneol=native#text/plain
|
||||||
src/emu/cpu/h83002/h8.h svneol=native#text/plain
|
src/emu/cpu/h83002/h8.h svneol=native#text/plain
|
||||||
src/emu/cpu/h83002/h8_16.c svneol=native#text/plain
|
src/emu/cpu/h83002/h8_16.c svneol=native#text/plain
|
||||||
src/emu/cpu/h83002/h8_8.c svneol=native#text/plain
|
src/emu/cpu/h83002/h8_8.c svneol=native#text/plain
|
||||||
|
@ -606,6 +606,14 @@ static int recurse_dir(int srcrootlen, astring &srcdir)
|
|||||||
t.replace(0, "src/", "$(OBJ)/");
|
t.replace(0, "src/", "$(OBJ)/");
|
||||||
t.replace(0, ".lay", ".lh");
|
t.replace(0, ".lay", ".lh");
|
||||||
|
|
||||||
|
printf("%s: %s\n", target2.cstr(), t.cstr());
|
||||||
|
}
|
||||||
|
if (core_filename_ends_with(t, ".inc"))
|
||||||
|
{
|
||||||
|
astring target2(file.name);
|
||||||
|
target2.replace(0, "src/", "$(OBJ)/");
|
||||||
|
target2.replace(0, ".c", ".o");
|
||||||
|
|
||||||
printf("%s: %s\n", target2.cstr(), t.cstr());
|
printf("%s: %s\n", target2.cstr(), t.cstr());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -621,7 +621,6 @@ endif
|
|||||||
$(CPUOBJ)/h6280/h6280.o: $(CPUSRC)/h6280/h6280.c \
|
$(CPUOBJ)/h6280/h6280.o: $(CPUSRC)/h6280/h6280.c \
|
||||||
$(CPUSRC)/h6280/h6280.h \
|
$(CPUSRC)/h6280/h6280.h \
|
||||||
$(CPUSRC)/h6280/h6280ops.h \
|
$(CPUSRC)/h6280/h6280ops.h \
|
||||||
$(CPUSRC)/h6280/tblh6280.c
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@ protected:
|
|||||||
#include "h6280ops.h"
|
#include "h6280ops.h"
|
||||||
|
|
||||||
// include the opcode macros and functions
|
// include the opcode macros and functions
|
||||||
#include "tblh6280.c"
|
#include "tblh6280.inc"
|
||||||
|
|
||||||
// address spaces
|
// address spaces
|
||||||
const address_space_config m_program_config;
|
const address_space_config m_program_config;
|
||||||
|
Loading…
Reference in New Issue
Block a user