DataMuseum.dk

Presents historical artifacts from the history of:

Commodore CBM-900

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

See our Wiki for more about Commodore CBM-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦4ad6df616⟧ TextFile

    Length: 615 (0x267)
    Types: TextFile
    Notes: UNIX file
    Names: »Makefile«

Derivation

└─⟦f27320a65⟧ Bits:30001972 Commodore 900 hard disk image with partial source code
    └─⟦f4b8d8c84⟧ UNIX V7 Filesystem
        └─ ⟦this⟧ »unimenu/src/menu/Makefile« 

TextFile

#
# %W% %U% %G%
#
# makefile for menu system
#
# Dan Mitchell April, 1985
#

CFLAGS = -DCOHERENT -DCOMMODORE

CFILES = dump.c fgets.c getlin.c init.c \
	input.c inquire.c inqwin.c io.c main.c \
	malloc.c parslin.c pop.c printf.c select.c \
	subs.c system.c uninit.c xqt.c

OFILES = \
	fgets.o \
	getlin.o \
	init.o \
	input.o \
	inquire.o \
	inqwin.o \
	io.o \
	main.o \
	parslin.o \
	pop.o \
	printf.o \
	select.o \
	subs.o \
	uninit.o \
	wind.o \
	xqt.o

STDLIB = \
	malloc.o \
	system.o

menu: $(OFILES)
	cc -O -o menu $(OFILES)
	@echo Finished `date`

clean:
	rm -f *.o

$(OFILES): defs.h

.PRECIOUS: $(CFILES)