############################################################################### # Makefile for enc demo # # Copyright 2006 Nintendo. All rights reserved. # # These coded instructions, statements, and computer programs contain # proprietary information of Nintendo of America Inc. and/or Nintendo # Company Ltd., and are protected by Federal copyright law. They may # not be disclosed to third parties or copied or duplicated in any form, # in whole or in part, without the prior written consent of Nintendo. # # $Log: makefile,v $ # Revision 1.5 2006/12/26 00:54:23 yoshioka_yasuhiro # Added encalternate. # # Revision 1.4 2006/10/27 12:22:09 yoshioka_yasuhiro # Deleted test demo. # # Revision 1.3 2006/10/27 12:21:22 yoshioka_yasuhiro # Divided demos. # # Revision 1.2 2006/08/11 10:17:29 yoshioka_yasuhiro # Added encunicode # # Revision 1.1 2006/08/07 06:43:09 yoshioka_yasuhiro # Initial commit. # # $NoKeywords: $ ############################################################################### all: setup build install include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs MODULENAME = encdemo DEMO = TRUE LCF_FILE = $(INC_ROOT)/revolution/eppc.$(ARCH_TARGET).lcf CSRCS = sample.c \ validate.c \ unicode.c \ japanese.c \ latin.c \ alternate.c BINNAMES = encsample \ encunicode \ encjapanese \ enclatin \ encalternate include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules $(FULLBIN_ROOT)/encsample$(BINSUFFIX):sample.o $(REVOLUTION_LIBS) $(FULLBIN_ROOT)/encunicode$(BINSUFFIX):unicode.o $(REVOLUTION_LIBS) $(FULLBIN_ROOT)/encjapanese$(BINSUFFIX):japanese.o validate.o $(REVOLUTION_LIBS) $(FULLBIN_ROOT)/enclatin$(BINSUFFIX):latin.o validate.o $(REVOLUTION_LIBS) $(FULLBIN_ROOT)/encalternate$(BINSUFFIX):alternate.o $(REVOLUTION_LIBS) #======== End of makefile ========#