Renamed one more include of .c in h file, and updated makemak (nw)

This commit is contained in:
Miodrag Milanovic 2013-06-18 14:11:02 +00:00
parent 6125d95e1d
commit e44c5d1298
5 changed files with 10 additions and 3 deletions

2
.gitattributes vendored
View File

@ -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

View File

@ -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());
} }
} }

View File

@ -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

View File

@ -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;