|
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 - download
Length: 478 (0x1de) Types: TextFile Names: »Makefile«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Bridge/Makefile«
# Makefile for multi-player bridge OBJ1 = master_talk.o bridge.o get_names.o master_io.o msgs.o ctl.o init_disp.o get_addrs.o ctl_transact.o invite.o look_up.o OBJ2 = slave_talk.o get_names.o slave_io.o msgs.o ctl.o init_disp.o get_addrs.o ctl_transact.o invite.o look_up.o all: invitebridge bridge invitebridge: $(OBJ1) cc -O -o invitebridge $(OBJ1) -lcurses -ltermlib bridge: $(OBJ2) cc -O -o bridge $(OBJ2) -lcurses -ltermlib clean: -rm *.o bridge invitebridge