|
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: 495 (0x1ef) Types: TextFile Names: »makefile.unx«
└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987 └─⟦this⟧ »EUUGD18/General/Bj2/makefile.unx«
# 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