1###############################################################################
2# MIDI sequencer for AX synthesizer (SEQ) Makefile
3#
4# Copyright (C)1998-2006 Nintendo  All Rights Reserved.
5#
6# These coded instructions, statements, and computer programs contain
7# proprietary information of Nintendo of America Inc. and/or Nintendo
8# Company Ltd., and are protected by Federal copyright law.  They may
9# not be disclosed to third parties or copied or duplicated in any form,
10# in whole or in part, without the prior written consent of Nintendo.
11#
12# $Log: makefile,v $
13# Revision 1.4  2006/01/31 06:37:13  aka
14# Changed copyright.
15#
16# Revision 1.3  11/16/2005 08:27:48  yasuh-to
17# Changed path of configuration file.
18#
19# Revision 1.2  07/07/2005 11:57:57  yasuh-to
20# Changed from NNGC_XXX to REVOLUTION_XXX.
21#
22# Revision 1.1.1.1  2005/05/12 02:15:50  yasuh-to
23# Imported from Dolphin tree.
24#
25#   1     5/09/01 1:14p Billyjack
26#   created
27#
28###############################################################################
29
30# All modules have "setup" and "build" as targets.  System libraries
31# and demo programs also have an "install" target that copies the compiled
32# binaries to the binary tree (/revolution/$(ARCH_TARGET)).
33all: 	setup build install
34
35# commondefs must be included near the top so that all common variables
36# will be defined before their use.
37include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs
38
39# MODULENAME should be set to the name of this subdirectory
40MODULENAME	= seq
41
42# This indicates to commondefs/modulerules as to where this directory is
43# The selectable paths are restricted to limit the number of subtrees
44# that are added to the Revolution tree.
45LIB		= TRUE
46
47
48###############################################################################
49# Library building
50# LIBNAME specifies the name of the library.  No suffix is required, as
51# that will depend on whether this is a DEBUG build or not.
52# The final name of the library will be $(LIBNAME)$(LIBSUFFIX)
53LIBNAME		= seq
54
55# CLIBSRCS specifies all C files that are built and linked into the library.
56# ASMLIBSRCS are all assembly files that will be built and linked into the lib.
57CLIBSRCS	= seq.c
58
59# modulerules contains the rules that will use the above variables
60# and dependencies below to construct the library and binaries specified.
61include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules
62
63