DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

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

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: M T

⟦4b63e1129⟧ TextFile

    Length: 711 (0x2c7)
    Types: TextFile
    Names: »Makefile.orig«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Adventure/src/kio/Makefile.orig« 

TextFile

#
# Makefile for UNIX keyed-IO routines.
# 	(c) Ken Wellsch 1985
#
CFLAGS = -O
KLIB = klib.a

SRC =	kioglob.c GetBlk.c GetRec.c MakBlk.c MakNam.c \
	MapBlk.c MapKey.c PutBlk.c PutRec.c \
	closek.c creatk.c dupk.c openk.c readk.c writek.c 

OBJ =	GetBlk.o GetRec.o MakBlk.o MakNam.o \
	MapBlk.o MapKey.o PutBlk.o PutRec.o \
	closek.o creatk.o kioglob.o openk.o \
	dupk.o readk.o writek.o 

HEADER = kio.h

all: $(KLIB)

$(SRC): $(HEADER)
	touch $@

$(KLIB): $(SRC)
	-ar x $(KLIB)
	-cc $(CFLAGS) -c $?
	rm -f $(KLIB)
	-ar ru $(KLIB) $(OBJ)
	rm -f *.o
	ranlib $(KLIB)

clean:
	rm *.o

backup:
	cp Makefile $(HEADER) $(SRC) bkup

print:
	lpr -Phw -p -J "Keyed I/O Lib" Makefile $(HEADER) $(SRC)

lint:
	lint $(SRC)