|
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: 796 (0x31c) Types: TextFile Names: »Makefile.orig«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Adventure/src/adv/Makefile.orig«
# # Makefile for the Adventure interpreter. # (c) Ken Wellsch 1985 # CFLAGS = -O KLIB = ../kio/klib.a ALIB = alib.a MAIN = adv.c SRC = error.c advglob.c cache.c command.c condition.c \ exec.c process.c savgm.c say.c showop.c symtab.c \ util.c values.c webster.c OBJ = error.o advglob.o cache.o command.o condition.o \ exec.o process.o savgm.o say.o showop.o symtab.o \ util.o values.o webster.o HEADER = adefs.h adv: $(ALIB) cc $(CFLAGS) $(MAIN) alib.a $(KLIB) -o adv size adv $(SRC):: $(HEADER) touch $@ $(ALIB): $(SRC) -ar x $(ALIB) cc $(CFLAGS) -c $? rm -f $(ALIB) -ar ru $(ALIB) $(OBJ) rm -f *.o ranlib $(ALIB) clean: rm *.o backup: cp Makefile $(HEADER) $(SRC) $(MAIN) bkup lint: lint $(SRC) $(MAIN) print: lpr -Phw -p -J "ADV" Makefile $(HEADER) $(MAIN) $(SRC)