blob: e43b5e830b3e35ad06fb5239eee1d654cf8efb39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.11 2015/11/24 03:10:10 deraadt Exp $
PROG= robots
CFLAGS+=-DMAX_PER_UID=5
SRCS= extern.c init_field.c main.c make_level.c move.c move_robs.c \
play_level.c query.c rnd_pos.c score.c
MAN= robots.6
DPADD= ${LIBCURSES}
LDADD= -lcurses
beforeinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
${DESTDIR}/var/games/robots_roll
.include <bsd.prog.mk>
|