############################################################################### # 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.2 08/11/2006 10:17:29 yoshioka_yasuhiro # Added encunicode # # Revision 1.1 08/07/2006 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 \ unicode.c BINNAMES = encsample \ encunicode include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules $(FULLBIN_ROOT)/encsample$(BINSUFFIX):sample.o $(REVOLUTION_LIBS) $(FULLBIN_ROOT)/encunicode$(BINSUFFIX):unicode.o $(REVOLUTION_LIBS) #======== End of makefile ========#