|
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: 698 (0x2ba) Types: TextFile Names: »Makefile.orig«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Adventure/src/munge/Makefile.orig«
# # Makefile for the Adventure Compiler. # (c) Ken Wellsch 1985 # CFLAGS = -O KLIB = ../kio/klib.a MLIB = mlib.a MAIN = munge.c SRC = buffers.c compile.c fio.c glob.c \ majors.c parse.c symtab.c util.c OBJ = buffers.o compile.o fio.o glob.o \ majors.o parse.o symtab.o util.o HEADER = mdefs.h munge: $(MAIN) $(MLIB) cc $(CFLAGS) $(MAIN) mlib.a $(KLIB) -o munge size munge $(SRC) $(MAIN):: mdefs.h touch $@ $(MLIB): $(SRC) -ar x $(MLIB) -cc $(CFLAGS) -c $? rm -f $(MLIB) -ar ru $(MLIB) $(OBJ) rm -f *.o ranlib $(MLIB) clean: rm *.o backup: cp Makefile $(HEADER) $(MAIN) $(SRC) bkup print: lpr -Phw -p -J "Munge" Makefile $(HEADER) $(MAIN) $(SRC) lint: lint $(SRC) $(MAIN)