1#	@(#)Makefile	8.1 (Berkeley) 5/31/93
2
3PROG=	teachgammon
4NOMAN=	noman
5CFLAGS+=-DTEACHGAMMON_TEXT -I${.CURDIR}/../common_source
6SRCS=	allow.c board.c check.c data.c fancy.c init.c odds.c one.c save.c \
7	subs.c table.c teach.c ttext1.c ttext2.c tutor.c
8GAMESCURSES=
9
10.PATH:	${.CURDIR}/../common_source
11
12# XXX: mismatches between types for static init
13init.o:	init.c
14	${CC} ${CFLAGS:N-flto} -c -o ${.TARGET} ${.IMPSRC}
15
16.include "../../Makefile.inc"
17.include <bsd.prog.mk>
18