home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume3 / jumble2 / Makefile < prev    next >
Makefile  |  1988-02-19  |  258b  |  11 lines

  1. # simple makefile for jumble
  2. jumble: jumble.c
  3.     cc -o jumble jumble.c
  4.  
  5. install: jumble
  6.     cp jumble /usr/games
  7.     # note: this path is wired into the code
  8.     # edit it if you change the path
  9.     touch /usr/games/lib/jumble.score
  10.     chmod 666 /usr/games/lib/jumble.score
  11.