fork of PCE focusing on macplus, supporting DaynaPort SCSI network emulation
1# src/cpu/e68000/Makefile.inc
2
3rel := src/cpu/e68000
4
5DIRS += $(rel)
6DIST += $(rel)/Makefile.inc
7
8CPU_68K_BAS := cc disasm ea opcodes ops-020 e68000
9CPU_68K_SRC := $(foreach f,$(CPU_68K_BAS),$(rel)/$(f).c)
10CPU_68K_OBJ := $(foreach f,$(CPU_68K_BAS),$(rel)/$(f).o)
11CPU_68K_HDR := $(foreach f,e68000 internal,$(rel)/$(f).h)
12CPU_68K_ARC := $(rel)/e68000.a
13
14CLN += $(CPU_68K_ARC) $(CPU_68K_OBJ)
15DIST += $(CPU_68K_SRC) $(CPU_68K_HDR)
16
17$(rel)/cc.o: $(rel)/cc.c
18$(rel)/disasm.o: $(rel)/disasm.c
19$(rel)/ea.o: $(rel)/ea.c
20$(rel)/opcodes.o: $(rel)/opcodes.c
21$(rel)/ops-020.o: $(rel)/ops-020.c
22$(rel)/e68000.o: $(rel)/e68000.c
23
24$(rel)/e68000.a: $(CPU_68K_OBJ)