DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: M T

⟦65aa4eb65⟧ TextFile

    Length: 719 (0x2cf)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Bj/Makefile« 

TextFile

# If you can edit /etc/services, define ROOTPRIV, otherwise
# edit defs.h for an unused internet port address (PORT = xxxx)
# If you want all the cards up, define BARNEYS
#
DEFS = -DROOTPRIV

CFLAGS = -O $(DEFS)

all:	bj dealer

bj:		bj.o sockets.o sockio.o
	cc $(CFLAGS) -o bj bj.o sockets.o sockio.o -lcurses -ltermlib

dealer:		dealer.o opensock.o sockio.o table.o hand.o
	cc $(CFLAGS) -o dealer dealer.o opensock.o sockio.o table.o hand.o

bj.o process.o sockets.o sockio.o:	defs.h

dealer.o opensock.o table.o hand.o:	defs.h

pitboss.o:	defs.h

clean:	
	rm *.o bj dealer

lint:	lintbj lintdealer

lintbj:
	lint $(DEFS) bj.c sockets.c sockio.c

lintdealer:
	lint $(DEFS) dealer.c opensock.c sockio.c table.c hand.c