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.2 08/11/2006 10:17:29 yoshioka_yasuhiro 14# Added encunicode 15# 16# Revision 1.1 08/07/2006 06:43:09 yoshioka_yasuhiro 17# Initial commit. 18# 19# $NoKeywords: $ 20############################################################################### 21 22all: setup build install 23 24include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs 25 26MODULENAME = encdemo 27DEMO = TRUE 28 29LCF_FILE = $(INC_ROOT)/revolution/eppc.$(ARCH_TARGET).lcf 30 31CSRCS = sample.c \ 32 unicode.c 33 34BINNAMES = encsample \ 35 encunicode 36 37include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules 38 39$(FULLBIN_ROOT)/encsample$(BINSUFFIX):sample.o $(REVOLUTION_LIBS) 40 41$(FULLBIN_ROOT)/encunicode$(BINSUFFIX):unicode.o $(REVOLUTION_LIBS) 42 43#======== End of makefile ========# 44