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

⟦8ea921f40⟧ TextFile

    Length: 495 (0x1ef)
    Types: TextFile
    Names: »makefile.unx«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Bj2/makefile.unx« 

TextFile

# Makefile (unix) for
#			B.J. - Las Vegas Blackjack, Version 1.0
#			by Nathan Glasser
#			nathan@brokaw.lcs.mit.edu (internet)
#			nathan@mit-eddie.uucp (usenet)
#
#			April, 1989
#-----------------------------------------------------------------------------
#Copyright 1989 by Nathan Glasser.
#You may feel free to distribute this program in its current form.
#Please do not remove this copyright information.

CFLAGS = -O

OBJS = bj.o shuffle.o

bj:	$(OBJS)
	cc -o bj $(OBJS)

$(OBJS):	bj.h