home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
games
/
volume6
/
bj2
/
makefile.dos
< prev
next >
Wrap
Makefile
|
1989-07-06
|
516b
|
21 lines
# Makefile (ibm-pc/ms-dos) 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 = -Ox
OBJS = bj.obj shuffle.obj
bj.exe: $(OBJS)
$(CC) -o bj $(OBJS)
$(OBJS): bj.h