Makefile.bsd 665 B

1234567891011121314151617181920212223242526
  1. # $NetBSD: Makefile,v 1.23 2003/08/01 17:03:42 lukem Exp $
  2. # @(#)Makefile 8.1 (Berkeley) 5/31/93
  3. .include <bsd.own.mk>
  4. PROG= atc
  5. CPPFLAGS+=-DBSD -I${.CURDIR} -I. -DYY_NO_UNPUT
  6. SRCS= extern.c grammar.y graphics.c input.c lex.l list.c log.c \
  7. main.c tunable.c update.c
  8. YHEADER=1
  9. MAN= atc.6
  10. LDADD= -ll -lm -lcurses
  11. DPADD= ${LIBL} ${LIBM} ${LIBCURSES}
  12. GAMES= Game_List Killer crossover default easy game_2 \
  13. Atlantis OHare Tic-Tac-Toe airports box crosshatch game_3 \
  14. game_4 novice two-corners
  15. HIDEGAME=hidegame
  16. SETGIDGAME=yes
  17. .if ${MKSHARE} != "no"
  18. FILES=${GAMES:S@^@${.CURDIR}/games/@g}
  19. FILESDIR=/usr/share/games/atc
  20. FILESMODE=444
  21. .endif
  22. .include <bsd.prog.mk>