view level1/atari/bootfiles/makefile @ 2631:442795681807

o Fixed Atari SIO DWRead to timeout longer o Commented out call to InitVIRQ in dw3.sb for Atari due to issues o VTIO for Atari now properly handles IRQ shadow registers o Level 1 clock now merged to include Atari
author Boisy Pitre <boisy.pitre@nuance.com>
date Sun, 26 Feb 2012 21:39:44 -0600
parents 65b1b5c80fec
children a34c08cdfcb2
line wrap: on
line source

PORT = atari
include $(NITROS9DIR)/rules.mak

# Module directory
MD		= ../modules
# Commands directory
CD		= ../cmds

DEPENDS		= ./makefile

BOOTFILE_P1 = $(MD)/krnp2 $(MD)/init \
		$(MD)/ioman $(MD)/scf.mn $(MD)/vtio.dr $(MD)/term.dt \
		$(MD)/sysgo \
		$(MD)/clock_60hz $(MD)/clock2_dw3 \
		$(MD)/krn

BOOTFILE_P2 = $(MD)/rbf.mn $(MD)/rbdw3.dr \
		$(MD)/x0.dd $(MD)/x1.dd $(MD)/dw3.sb \
		$(MD)/scdwp.dr $(MD)/p_scdwp.dd \
		$(CD)/shell_21 $(CD)/date

BOOTFILES	= bootfile

ALLOBJS		= $(BOOTFILES)

all:	$(ALLOBJS)

bootfile: $(BOOTFILE_P1) $(BOOTFILE_P2) $(DEPENDS)
	$(MERGE) $(BOOTFILE_P1)>$@_p1
	$(MERGE) $(BOOTFILE_P2)>$@_p2
	$(PADROM) -b 10240 $@_p1
	$(PADROM) -b 12288 $@_p1
	$(MERGE) $@_p2 $@_p1>$@
	$(RM) $@_p2 $@_p1
	$(PADROM) -b 32768 $@

clean:
	$(RM) $(ALLOBJS)