1#!/usr/bin/env omake
2#----------------------------------------------------------------------------
3# Project:  NintendoWare
4# File:     OMakefile
5#
6# Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc.  All rights reserved.
7#
8# These coded instructions, statements, and computer programs contain proprietary
9# information of Nintendo and/or its licensed developers and are protected by
10# national and international copyright laws. They may not be disclosed to third
11# parties or copied or duplicated in any form, in whole or in part, without the
12# prior written consent of Nintendo.
13#
14# The content herein is highly confidential and should be handled accordingly.
15#
16# $Revision: $
17#----------------------------------------------------------------------------
18SUPPORTED_TARGETS = CTR-*.Process.MPCore.*
19
20TARGET_PROGRAM = bounding
21
22SOURCES[] =   sources/main.cpp
23
24ROMFS_ROOT = romfiles
25ROMFS_FILES[] =
26
27ROMFS_FILES[] += $(LayoutResources $(ROMFS_ROOT))
28ROMFS_FILES[] += $(SetupScript ./setup.bat, $(ROMFS_ROOT), layout.arc)
29
30ROMFS_DEPENDENCIES = $(ROMFS_FILES)
31
32INCLUDES += ../demolib/include
33
34.PHONY: clean
35
36clean:
37    rm -rf images objects $(ROMFS_ROOT)
38
39include $(NW4C_ROOT)/build/omake/modulerules
40
41build: $(DEFAULT_TARGETS)
42
43DefineDefaultRules()
44