DataMuseum.dk

Presents historical artifacts from the history of:

ICL Comet 32

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about ICL Comet 32

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦9926272b4⟧ TextFile

    Length: 701 (0x2bd)
    Types: TextFile
    Notes: UNIX file
    Names: »makefile«

Derivation

└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
    └─⟦28c352965⟧ »/a« UNIX Filesystem
        └─⟦this⟧ »sys/stand/makefile« 

TextFile

# makefile for making the bootfloppy

.SUFFIXES:
.SUFFIXES: .o .c .s .x .d

CC	= cc
AS	= as
LD	= ld
# ASK	= -DASK=1
# MENY	= -DMENY=1

COPTS	= 
CFLAGS	= -c -O ${COPTS}
AFLAGS	= -v
USRFLG  = ${ASK} ${MENY}
LIBRARY = libsa.a

# Be sure to reflect any changes to RELOC in bootsrt0.s
# RELOC must not be greater than 64K

RELOC = -T 0e000
STANDFLAG = -DSTANDALONE

FILES	= uboot.x 

all: ${FILES}

install: ${FILES}
	install -m 0755 root sys -s -x ${FILES} /stand

uboot.x: uboot.o $(LIBRARY)
	$(LD) -p -e _nrentry $(RELOC) -o uboot.x uboot.o $(LIBRARY)

uboot.o: uboot.c
	${CC} ${CFLAGS} ${STANDFLAG} ${USRFLG} uboot.c

# Handy dandy randy building rules.

.x.d:
	cat /usr/local/lib/flophead $*.x > $*.d