# Copyright 2008 Castle Technology Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Makefile fragment for assembler modules targetted at RAM, built using objasm

INCLUDED_RAMMODULE = YES

#
# $Id$
#
# This makefile provides the following phony targets:
#
#    all     install_ram
#
#
# This fragment uses the following macros set by the master makefile.
#
#
# COMPONENT        (the name of the component)
# TARGET           (leafname of component being built)
# RAM_OBJS         (component's object files for romming)
# RAM_LIBS         (libraries to link again RAM_OBJS to generate RAM_MODULE)
# DIRS     (opt)   (magic target to ensure object directories are present)
#
#
# It relies on the following from the build system:
#
#
# INSTDIR          (installation directory for RAM_MODULE)
#
#
# It relies on the following generic tool macros from the Tools makefile
#
# CP + CPFLAGS     (copy, cp etc.)
# MKDIR            (cdir/mkdir -p)
# ECHO
# LD + LDFLAGS     (linker)
# LDRAMFLAGS       (more linker flags)
# MODSQZ +
#   MODSQZFLAGS    (module squeezer)
#


#
# RISC OS ROM build rules:
#
all: ${RAM_MODULE}
        @${ECHO} ${COMPONENT}: ram module built

install_ram: ${RAM_MODULE}
        ${MKDIR} ${INSTDIR}
        ${CP} ${RAM_MODULE} ${INSTDIR}.${TARGET} ${CPFLAGS}
        @${ECHO} ${COMPONENT}: ram module installed

#
# Actually make the linked RAM target 
#
${RAM_MODULE}: ${RAM_OBJS} ${RAM_LIBS} ${DIRS}
        ${MKDIR} rm
        ${LD} ${LDFLAGS} ${LDRAMFLAGS} -o $@ -rmf ${RAM_OBJS} ${RAM_LIBS}
        ${MODSQZ} ${MODSQZFLAGS} $@
        

EOFSTDMAKEFILE=$Id$
# EOF