head     1.1;
access   ;
symbols  ;
locks    ; strict;
comment  @# @;


1.1
date     89.07.18.09.47.10;  author sarah;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@## makefile for config/sun3e

# ROMs must exist on a separate ROM-board in this case at 0x300000

RAM_START_ADRS = 4000		# adrs in RAM of start of code in RAM version
ROM_START_ADRS = 300000		# adrs in ROM of start of code in ROM version
ROM_TEXT_ADRS  = 370000		# adrs in RAM where code will go in ROM version

# no intial PC+SP is required

HEX_FLAGS      = -a 0
REL_FLAGS      = $(REL_TEXT_FLAG) $(ROM_TEXT_ADRS)	

define(DEFCPU,MC68020)
define(DEFVW,UP2)

# Sun's ROM requires the file to be stripped and then placed in /tftpboot

vxWorks.b : vxWorks.sym vxWorks
	dd if=vxWorks of=vxWorks.b ibs=32 skip=1
	chmod 755 vxWorks.b

include(../../misc/makeHost)
include(../../misc/makeTarget)
@
