############################################################################### # ARC demo makefile # # Copyright (C) 2001-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 04/21/2006 01:20:42 hiratsu # Added setup & install. # # Revision 1.1 04/19/2006 10:47:31 hiratsu # Initial check-in. Ported from Dolphin. # # # 1 7/03/01 3:18a Hashida # Initial revision. # # $NoKeywords: $ # ############################################################################### # tests are NOT installed. all: setup build install # module name should be set to the name of this subdirectory MODULENAME = arcdemo DEMO = TRUE include $(REVOLUTION_SDK_ROOT)/build/buildtools/commondefs CSRCS = arctest1.c arctest2.c arctest3.c LCF_FILE = $(INC_ROOT)/revolution/eppc.$(ARCH_TARGET).lcf BINNAMES = arctest1 arctest2 arctest3 ARCLIB = $(INSTALL_ROOT)/lib/arc$(LIBSUFFIX) # additional targets may be added here include $(REVOLUTION_SDK_ROOT)/build/buildtools/modulerules # Dependencies and rules for any added rules may be placed here to take # advantage of commondefs. $(FULLBIN_ROOT)/arctest1$(BINSUFFIX): arctest1.o \ $(REVOLUTION_LIBS) $(ARCLIB) $(FULLBIN_ROOT)/arctest2$(BINSUFFIX): arctest2.o \ $(REVOLUTION_LIBS) $(ARCLIB) $(FULLBIN_ROOT)/arctest3$(BINSUFFIX): arctest3.o \ $(REVOLUTION_LIBS) $(ARCLIB)