|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 711 (0x2c7) Types: TextFile Names: »Makefile.orig«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Adventure/src/kio/Makefile.orig«
# # 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)