home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff216.lzh / Wanderer / src / Makefile.unix < prev    next >
Makefile  |  1989-06-02  |  577b  |  26 lines

  1. # Makefile for wanderer - modified by Bill Randle 6/30/88
  2. # modified again by play@cwi.nl
  3. # and again by me.. maujp@uk.ac.warwick.cu
  4.  
  5. OBJ = m.o save.o jump.o display.o icon.o game.o read.o help.o fall.o scores.o edit.o encrypt.o
  6.  
  7. CFLAGS = -O
  8.  
  9. # you may need to adjust this on your unix system
  10. # LIBS = -lcurses -ltermcap
  11. LIBS = -lcurses
  12.  
  13. all:    wanderer
  14.     @echo DONE
  15.  
  16. wanderer:    $(OBJ)
  17.     cc $(CFLAGS) -o wanderer $(OBJ) $(LIBS)
  18.  
  19. $(OBJ): wand_head.h
  20.  
  21. install:
  22.     @mkdir /usr/games/lib/wand
  23.     cp -r screens /usr/games/lib/wand
  24.     touch /usr/games/lib/wand/hiscores
  25.     mv wanderer /usr/games
  26.