OBJS = main.o util.o card.o cardbitmaps.o stack.o score.o auto.o 
SRCS = main.C util.C card.C cardbitmaps.C stack.C score.C auto.C 
LDLIBS = $(XLIB) -lg++
CFLAGS = -O2 -DGERMAN		# comment out for english texts

/* Make C++ work correctly.  This works for AT&T cfront; it will need to be */
/* tweaked to work with g++. */
CPLUSPLUS = gcc 
CC = $(CPLUSPLUS)		/* So that linking works right */
INCLUDES = -I/usr/local/include/CC	/* So that make depend works right */
.SUFFIXES: $(.SUFFIXES) .C
.C.o: $*.C
	$(CPLUSPLUS) -c $(CFLAGS) $*.C

LDOPTIONS += -s
# -nojump

ComplexProgramTarget(seahaven)
