diff options
author | B. Watson <yalhcru@gmail.com> | 2015-05-07 16:32:32 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2015-05-07 16:32:32 -0400 |
commit | 013ac7742311556022304e8b30ca170d48b3a016 (patch) | |
tree | 53faa33e75991363f1a6dcc7edc83a66b70e6995 /tetris/Makefile | |
download | bsd-games-extra-013ac7742311556022304e8b30ca170d48b3a016.tar.gz |
initial commit
Diffstat (limited to 'tetris/Makefile')
-rw-r--r-- | tetris/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tetris/Makefile b/tetris/Makefile new file mode 100644 index 0000000..0d9c0d6 --- /dev/null +++ b/tetris/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.7 2010/02/03 15:34:39 roy Exp $ +# @(#)Makefile 8.1 (Berkeley) 5/31/93 + +PROG= tetris +SRCS= input.c screen.c shapes.c scores.c tetris.c +MAN= tetris.6 +DPADD= ${LIBTERMINFO} +# 20150209 bkw: s/terminfo/curses/, add -lbsd +LDADD=-lcurses -lbsd +HIDEGAME=hidegame +SETGIDGAME=yes + +.include <bsd.prog.mk> |