diff options
author | 2014-05-13 11:46:02 +0000 | |
---|---|---|
committer | 2014-05-13 11:46:02 +0000 | |
commit | 640354ad9efa2b8c0027c0bce444e652cb593333 (patch) | |
tree | 9b96640848e9599d569e8c9a683acf3417406d60 /src/emu/machine/machine.mak | |
parent | 4997e59478dc1d5c0b60c4125e609c3c271a85f7 (diff) |
Big Amiga cleanup and reorganizaton. CDTV temporarily broken. Lots of
work still to do. All basic Amiga models are now supported to varying
degrees.
Diffstat (limited to 'src/emu/machine/machine.mak')
-rw-r--r-- | src/emu/machine/machine.mak | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/emu/machine/machine.mak b/src/emu/machine/machine.mak index 18897309000..de303b9dfa7 100644 --- a/src/emu/machine/machine.mak +++ b/src/emu/machine/machine.mak @@ -16,6 +16,46 @@ MACHINEOBJ = $(EMUOBJ)/machine #------------------------------------------------- # +#@src/emu/machine/akiko.h,MACHINES += AKIKO +#------------------------------------------------- + +ifneq ($(filter AKIKO,$(MACHINES)),) +MACHINEOBJS += $(MACHINEOBJ)/akiko.o +endif + + +#------------------------------------------------- +# +#@src/emu/machine/autoconfig.h,MACHINES += AUTOCONFIG +#------------------------------------------------- + +ifneq ($(filter AUTOCONFIG,$(MACHINES)),) +MACHINEOBJS += $(MACHINEOBJ)/autoconfig.o +endif + + +#------------------------------------------------- +# +#@src/emu/machine/cr511b.h,MACHINES += CR511B +#------------------------------------------------- + +ifneq ($(filter CR511B,$(MACHINES)),) +MACHINEOBJS += $(MACHINEOBJ)/cr511b.o +endif + + +#------------------------------------------------- +# +#@src/emu/machine/dmac.h,MACHINES += DMAC +#------------------------------------------------- + +ifneq ($(filter DMAC,$(MACHINES)),) +MACHINEOBJS += $(MACHINEOBJ)/dmac.o +endif + + +#------------------------------------------------- +# #@src/emu/machine/40105.h,MACHINES += CMOS40105 #------------------------------------------------- |