Previous 199869 Revisions Next

r36792 Monday 30th March, 2015 at 07:30:29 UTC by Vasantha Crabb
Fix UME build, allow custom target to inject stuff in main makefile
[/trunk]makefile
[src/ume]ume.mak*

trunk/makefile
r245303r245304
351351   scripts/src/bus.lua \
352352   scripts/src/netlist.lua \
353353   scripts/toolchain.lua \
354   scripts/target/$(TARGET)/$(SUBTARGET).lua
355ifneq (,$(wildcard src/osd/$(OSD)/$(OSD).mak))
356SCRIPTS+= src/osd/$(OSD)/$(OSD).mak
357endif
354   scripts/target/$(TARGET)/$(SUBTARGET).lua \
355   $(wildcard src/osd/$(OSD)/$(OSD).mak) \
356   $(wildcard src/$(TARGET)/$(SUBTARGET).mak)
358357ifdef REGENIE
359358SCRIPTS+= regenie
360359endif
r245303r245304
721720include src/osd/$(OSD)/$(OSD).mak
722721endif
723722
723ifneq (,$(wildcard src/$(TARGET)/$(SUBTARGET).mak))
724include src/$(TARGET)/$(SUBTARGET).mak
725endif
726
724727$(GEN_FOLDERS):
725728   -$(call MKDIR,$@)
726729
trunk/src/ume/ume.mak
r0r245304
1###########################################################################
2#
3#   makefile
4#
5#   Additional makefile for building UME
6#
7#   Copyright (c) Nicola Salmoria and the MAME Team.
8#   Visit http://mamedev.org for licensing and usage restrictions.
9#
10###########################################################################
11
12GEN_FOLDERS += $(GENDIR)/mame/layout/ $(GENDIR)/mess/layout/
13LAYOUTS += $(wildcard $(SRC)/mame/layout/*.lay) $(wildcard $(SRC)/mess/layout/*.lay)


Previous 199869 Revisions Next


© 1997-2024 The MAME Team