blob: 5ed8bb2ef03e02ac67f8b20216683e20b50bdbb1 (
plain)
1
2
3
4
5
6
7
8
9
|
# $OpenBSD: Makefile,v 1.8 2015/11/17 15:27:24 tedu Exp $
PROG= tetris
SRCS= input.c screen.c shapes.c scores.c tetris.c
MAN= tetris.6
DPADD= ${LIBCURSES}
LDADD= -lcurses
.include <bsd.prog.mk>
|