|
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: 1087 (0x43f) Types: TextFile Names: »Makefile«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Craps/Makefile«
SOURCES = main.c dont.c etc.c help.c makeb.c pass.c pay.c prints.c \ props.c subs.c final.c random.c OBJECTS = main.o dont.o etc.o help.o makeb.o pass.o pay.o prints.o \ props.o subs.o final.o random.o # # Use the following defines: # # -DBSD42 for Berkeley Unix 4.2 # -DBSD29 for Berkeley Unix 2.9 # -DSYSV for System V machines # -DXENIX for Xenix Machines # -DSCORES to maintain a high score list # CFLAGS = -O -DBSD42 -DSCORES # # if you are using BSD29, then add the -i option to the cc line # craps: ${OBJECTS} cc ${CFLAGS} -s -i -o craps ${OBJECTS} -lcurses -ltermlib -lm install: craps craps.6 cp craps /usr/games cp craps.6 /usr/games/man cp /dev/null /usr/games/lib/craps.list main.o: main.c types.h dont.o: dont.c types.h ext.h etc.o: etc.c types.h ext.h help.o: help.c types.h ext.h makeb.o: makeb.c types.h ext.h pass.o: pass.c types.h ext.h pay.o: pay.c types.h ext.h prints.o: prints.c types.h ext.h props.o: props.c types.h ext.h subs.o: subs.c types.h ext.h final.o: final.c types.h ext.h random.o: random.c types.h ext.h clean: rm -f craps *.o