Makefile 870 Bytes
#----------------------------------------------------------------------#
#	Copyright (C) 1997, Nintendo.
#	
#	File		
#	Coded    by	Yoshitaka Yasumoto.	Nov 10, 1997.
#	
#	$Id: Makefile,v 1.1.1.1 2002/05/02 03:29:12 blythe Exp $
#----------------------------------------------------------------------#

PRDEPTH=../../
include $(ROOT)/usr/include/make/PRdefs

LCDEFS = 
LCINCS = -I${ROOT}/usr/include/PR -I${ROOT}/usr/include

DIRT  = *.u *.dat *.lst *.sym *.dbg *.elf *.tvd *~ yieldcheck

TARGETS = 	yieldcheck.o

default: ${TARGETS}

install: ${TARGETS}
	$(INSTALL) -m 555 -F /usr/lib/PR $(TARGETS)
	$(INSTALL) -m 555 -F /usr/src/PR/rspcode/yieldcheck Makefile *.s

exports: install

include $(ROOT)/usr/include/make/commonrules

yieldcheck.o:	yieldcheck.s
	${RSPASM} ${LCINCS} -o yieldcheck yieldcheck.s
	${RSP2ELF} -p -r yieldcheck

#======== End of Makefile ========#