head	1.4;
access;
symbols
	V1_6_7:1.4
	V1_6_6:1.4
	V1_6_5:1.4
	V1_6_4:1.4
	V1_6_3:1.4
	V1_6_2:1.4
	V1_6_1:1.4
	V1_6:1.4;
locks; strict;
comment	@# @;


1.4
date	97.02.04.17.40.07;	author vandys;	state Exp;
branches;
next	1.3;

1.3
date	97.02.02.20.36.33;	author vandys;	state Exp;
branches;
next	1.2;

1.2
date	96.12.21.16.40.47;	author vandys;	state Exp;
branches;
next	1.1;

1.1
date	96.12.19.22.59.31;	author vandys;	state Exp;
branches;
next	;


desc
@Makefile
@


1.4
log
@Default is MGR-based hearts
@
text
@CC=gcc
CFLAGS=-Wall
LIBS=
MGRINCS=-I/vsta/mgr/include
MGRLIBS=-lmgr

# TTY hearts
OBJS=hearts.o ui.o card.o ai.o

# MGR hearts
MGROBJS=hearts.o mgr.o card.o ai.o

all: hearts

tthearts: $(OBJS)
	rm -f tthearts
	$(CC) $(CFLAGS) -o tthearts $(OBJS) $(LIBS)

mgr.o: mgr.c
	$(CC) -c $(CFLAGS) $(MGRINCS) mgr.c

hearts: $(MGROBJS)
	rm -f hearts
	$(CC) $(CFLAGS) -o hearts $(MGROBJS) $(MGRLIBS)
@


1.3
log
@First pass, hooks for MGR display of hearts
@
text
@d7 1
d9 2
d13 1
a13 1
all: hearts mgr
d15 3
a17 3
hearts: $(OBJS)
	rm -f hearts
	$(CC) $(CFLAGS) -o hearts $(OBJS) $(LIBS)
d22 3
a24 3
mgr: $(MGROBJS)
	rm -f mgr
	$(CC) $(CFLAGS) -o mgr $(MGROBJS) $(MGRLIBS)
@


1.2
log
@-Wall is your friend
@
text
@d4 2
d8 3
d15 7
@


1.1
log
@Initial revision
@
text
@d2 1
a2 1
CFLAGS=
@
