summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emu.mak
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-04-08 06:10:18 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-04-08 06:10:18 +0000
commit717a11337e363de3fa75af8f7a4daee1d438fb65 (patch)
tree94d5764c9c3462e9a4ada281f19ef0fafd186b84 /src/emu/emu.mak
parent2238e2d3ea0f05362f8b288daa1fe3a5c4150fe1 (diff)
Added gprof support to the makefile. [Bryan Ischo]
Added a check for the OPTION_READCONFIG option before executing the code which would attempt to incorporate configuration file settings into the current configuration, because if OPTION_READCONFIG is set to false, then there is no reason to even try to do this as every single configuration file will be ignored (because config files have been turned off by OPTION_READCONFIG). [Bryan Ischo] Fixed small memory leak in mame.c. [Bryan Ischo] Fixed double-free error in render.c. [Bryan Ischo] Made core_strdup use osd_malloc instead of malloc. [Bryan Ischo]
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 5c0f89efe36..b3ad3914137 100644
--- a/src/emu/emu.mak
+++ b/src/emu/emu.mak
@@ -202,7 +202,9 @@ EMUVIDEOOBJS = \
$(EMUVIDEO)/vector.o \
$(EMUVIDEO)/voodoo.o \
-$(LIBEMU): $(EMUOBJS) $(EMUSOUNDOBJS) $(EMUAUDIOOBJS) $(EMUDRIVEROBJS) $(EMUMACHINEOBJS) $(EMUVIDEOOBJS)
+LIBEMUOBJS = $(EMUOBJS) $(EMUSOUNDOBJS) $(EMUAUDIOOBJS) $(EMUDRIVEROBJS) $(EMUMACHINEOBJS) $(EMUVIDEOOBJS)
+
+$(LIBEMU): $(LIBEMUOBJS)