1###############################################################################
2# Makefile for enc demo
3#
4# Copyright 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.5  2006/12/26 00:54:23  yoshioka_yasuhiro
14# Added encalternate.
15#
16# Revision 1.4  2006/10/27 12:22:09  yoshioka_yasuhiro
17# Deleted test demo.
18#
19# Revision 1.3  2006/10/27 12:21:22  yoshioka_yasuhiro
20# Divided demos.
21#
22# Revision 1.2  2006/08/11 10:17:29  yoshioka_yasuhiro
23# Added encunicode
24#
25# Revision 1.1  2006/08/07 06:43:09  yoshioka_yasuhiro
26# Initial commit.
27#
28# $NoKeywords: $
29###############################################################################
30
31all: 	setup build install
32
33include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs
34
35MODULENAME	= encdemo
36DEMO		= TRUE
37
38LCF_FILE        = $(INC_ROOT)/revolution/eppc.$(ARCH_TARGET).lcf
39
40CSRCS		= sample.c      \
41              validate.c    \
42              unicode.c     \
43              japanese.c    \
44              latin.c       \
45              alternate.c
46
47BINNAMES 	= encsample     \
48              encunicode    \
49              encjapanese   \
50              enclatin      \
51              encalternate
52
53include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules
54
55$(FULLBIN_ROOT)/encsample$(BINSUFFIX):sample.o $(REVOLUTION_LIBS)
56
57$(FULLBIN_ROOT)/encunicode$(BINSUFFIX):unicode.o $(REVOLUTION_LIBS)
58
59$(FULLBIN_ROOT)/encjapanese$(BINSUFFIX):japanese.o validate.o $(REVOLUTION_LIBS)
60
61$(FULLBIN_ROOT)/enclatin$(BINSUFFIX):latin.o validate.o $(REVOLUTION_LIBS)
62
63$(FULLBIN_ROOT)/encalternate$(BINSUFFIX):alternate.o $(REVOLUTION_LIBS)
64
65#======== End of makefile ========#
66