1#!/usr/bin/env omake 2#---------------------------------------------------------------------------- 3# Project: Horizon 4# File: targetdefs.CTR.om 5# 6# Copyright 2007-2009 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# $Date:: 2010-04-07#$ 15# $Rev: 13736 $ 16# $Author: hatamoto_minoru $ 17#---------------------------------------------------------------------------- 18 19#---------------------------------------------------------------------------- 20# Definitions of shared functions for platforms 21#---------------------------------------------------------------------------- 22 23#---------------------------------------------------------------------------- 24# Define platform hardware 25#---------------------------------------------------------------------------- 26section 27 spec = $(TargetSpec.new $'WIN-IA32') 28 spec.platform = WIN 29 spec.hardware = WIN-IA32 30 spec.processors = i386 31 spec.getSystemFlags(systemname) = 32 flags = 33 return $(flags) 34 35 spec.getMinimumLibraries(systemname, processor) = 36 return $(EMPTY) 37 38 spec.getDefaultLibraries(systemname, processor) = 39 #return /usr/lib/mingw/crt1.o -lgcc -lmingw32 -lcrtdll -lkernel32 -luser32 40 return $(EMPTY) 41 42 TARGET_MANAGER.register($(spec)) 43 export 44 45#---------------------------------------------------------------------------- 46