1#! make -f
2#============================================================================
3# Project:  RevolutionSDK Extensions - buildtools
4# File:     modulerules.demoshare
5#
6# Copyright 2006 Nintendo.  All rights reserved.
7#
8# These coded instructions, statements, and computer programs contain
9# proprietary information of Nintendo of America Inc. and/or Nintendo
10# Company Ltd., and are protected by Federal copyright law.  They may
11# not be disclosed to third parties or copied or duplicated in any form,
12# in whole or in part, without the prior written consent of Nintendo.
13#============================================================================
14
15ifeq (TRUE,$(REX_NETDEMO))
16    REX_DEMOSHARE_OBJS         += $(addprefix $(REX_DEMOSHARE_OBJDIR)/,$(REX_DEMOSHARE_NET_OBJS))
17endif
18
19$(REX_DEMOSHARE_OBJDIR)/%.o: $(REX_DEMOSHARE_SRCDIR)/%.c
20	$(MAKEDIRS)
21	$(C_COMPILE)
22
23demoshare-clean:
24	rm -rf $(REX_DEMOSHARE_OBJDIR)
25
26clean:	demoshare-clean
27
28#======== End of modulerules ========#
29