]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - battlestar/Makefile
Gcc-8 bug confusion with restrict on sh3
[bsdgames-darwin.git] / battlestar / Makefile
1 # $NetBSD: Makefile,v 1.11 2019/10/29 21:30:42 christos Exp $
2 # @(#)Makefile 8.1 (Berkeley) 5/31/93
3
4 PROG= battlestar
5 SRCS= battlestar.c command1.c command2.c command3.c command4.c \
6 command5.c command6.c command7.c \
7 init.c cypher.c getcom.c parse.c room.c save.c fly.c misc.c \
8 globals.c dayfile.c nightfile.c dayobjs.c nightobjs.c words.c
9 MAN= battlestar.6
10 DPADD= ${LIBCURSES} ${LIBTERMINFO}
11 LDADD= -lcurses -lterminfo
12 HIDEGAME=hidegame
13 SETGIDGAME=yes
14
15 .if !empty(MACHINE_ARCH:Msh3*)
16 COPTS.parse.c+=-Wno-restrict
17 .endif
18
19 .include <bsd.prog.mk>