summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emu.mak
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-08-22 06:25:07 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-08-22 06:25:07 +0000
commitf474114e1d33a559fdb9e3369d648ce45e081e99 (patch)
treee7ef30fac785ae9c7b91750733249f116fb0bc5e /src/emu/emu.mak
parentb99862230da58440c266b30762484acb1f2ee778 (diff)
Added infrastructure to compile universal standalone disassembler:
- added unidasm to the tools build - split the disassemblers out of libcpu and into new libdasm - ensured the disassembly entry points for all disassemblers are in the source file for the disassembler (sometimes new generic versions were created) Still needs command line options and file loading, but the fundamentals are present, and it links.
Diffstat (limited to 'src/emu/emu.mak')
-rw-r--r--src/emu/emu.mak4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/emu/emu.mak b/src/emu/emu.mak
index ae05db0e77e..89acb4aebb1 100644
--- a/src/emu/emu.mak
+++ b/src/emu/emu.mak
@@ -202,7 +202,9 @@ $(LIBEMU): $(EMUOBJS) $(EMUSOUNDOBJS) $(EMUAUDIOOBJS) $(EMUDRIVEROBJS) $(EMUMACH
include $(EMUSRC)/cpu/cpu.mak
-$(LIBCPU): $(CPUOBJS) $(DBGOBJS)
+$(LIBCPU): $(CPUOBJS)
+
+$(LIBDASM): $(DASMOBJS)