Initial import from FreeBSD RELENG_4:
[dragonfly.git] / games / sail / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 5/31/93
2 # $FreeBSD: src/games/sail/Makefile,v 1.4.2.3 2002/08/07 16:31:42 ru Exp $
3
4 PROG=   sail
5 SRCS=   main.c pl_main.c pl_1.c pl_2.c pl_3.c pl_4.c pl_5.c pl_6.c pl_7.c \
6         dr_main.c dr_1.c dr_2.c dr_3.c dr_4.c dr_5.c lo_main.c \
7         assorted.c game.c globals.c misc.c parties.c sync.c version.c
8 MAN=    sail.6
9 DPADD=  ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT}
10 LDADD=  -lcurses -ltermcap -lcompat
11 HIDEGAME=hidegame
12
13 beforeinstall:
14 .if !exists(${DESTDIR}/var/games/saillog)
15         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
16             ${DESTDIR}/var/games/saillog
17 .endif
18
19 .include <bsd.prog.mk>