swh:1:snp:63e2d142f91fc04ec33789d9d7bb85f3bef72e05
Raw File
Tip revision: b8304c7c84b543b28903346c11a2c30b6af6aedf authored by Mike Stewart on 03 August 2019, 05:42:04 UTC
Added a skeleton Colossus 234 for reconstruction, based on Colossus 237
Tip revision: b8304c7
Makefile
# Copyright:	Public domain.
# Filename:	Makefile
# Purpose:	Makefile for Sundial E.
# Contact:	Ron Burkey <info@sandroid.org>.
# Website:	www.ibiblio.org/apollo/index.html
# Mod history:	2019-07-23 RSB	So far we have no source code, so 
#				this is just an empty shell right now.

BASENAME=SundialE

## Retread was built for the BLK2 target
EXTRA_YAYUL_ARGS+=--blk2 --early-sbank --no-checksums --parity

# Retread does not have checksums, so disable them.
OCT2BIN_ARGS+=--no-checksums

NO_BINSOURCE=yes
EXTRA_TARGETS=diffSundialE

#include ../Makefile.inc

# This isn't the real "default" target.  It's just here in case
# Makefile.inc is commented out above.
.PHONY: default
default:
	@echo Nothing to do yet.

.PHONY: diffSundialE
diffSundialE:
	diff -s SundialEvb.bin SundialE.bin
back to top