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
20
21ASSET_SUBDIR    := headers
22SRC_DIRS        := .
23SHADER_DEST_ROOT:=.
24SHADER_DEST_DIR :=$(SHADER_DEST_ROOT)/$(ASSET_SUBDIR)
25
26.PHONY: build_headers_only
27build_headers_only: shader_headers
28
29# commondefs and module rules for shaders
30
31include $(BUILD_MAKE_PATH)/gx2_shaders.mk
32
33#======== End of makefile ========#
34
35