home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / games / robots / Makefile < prev    next >
Encoding:
Makefile  |  1990-05-11  |  444 b   |  17 lines

  1. #    @(#)Makefile    5.10 (Berkeley) 5/11/90
  2.  
  3. PROG=    robots
  4. CFLAGS+=-DMAX_PER_UID=5
  5. SRCS=    extern.c init_field.c main.c make_level.c move.c move_robs.c \
  6.     play_level.c query.c rnd_pos.c score.c flush_in.c
  7. MAN6=    robots.0
  8. DPADD=    ${LIBCURSES} ${LIBTERM} ${LIBCOMPAT}
  9. LDADD=    -lcurses -ltermlib -lcompat
  10. HIDEGAME=hidegame
  11.  
  12. beforeinstall:
  13.     install -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
  14.         ${DESTDIR}/var/games/robots_roll
  15.  
  16. .include <bsd.prog.mk>
  17.