1############################################################################### 2# vim:ts=4:sw=4:noexpandtab 3# Makefile for any library 4# 5# Copyright (C) Nintendo. All rights reserved. 6# 7# These coded instructions, statements, and computer programs contain 8# proprietary information of Nintendo of America Inc. and/or Nintendo 9# Company Ltd., and are protected by Federal copyright law. They may 10# not be disclosed to third parties or copied or duplicated in any form, 11# in whole or in part, without the prior written consent of Nintendo. 12# 13############################################################################### 14 15# This makefile must set the relative depth to the build directory 16# using only "..", without a trailing slash 17 18MODULE_DEPTH := ../../.. 19BUILD_MAKE_PATH := $(MODULE_DEPTH)/build/make 20ASSET_SUBDIR := lib_demo 21SRC_DIRS := . 22 23# commondefs and module rules for shaders 24 25include $(BUILD_MAKE_PATH)/gx2_shaders.mk 26 27#======== End of makefile ========# 28 29