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.amiga < prev    next >
Makefile  |  1989-06-02  |  798b  |  25 lines

  1. #==================================================================
  2. # This makefile is for the AMIGA with the Lattice 5.02 LMK utility.
  3. #==================================================================
  4.  
  5. # Makefile for wanderer - modified by Bill Randle 6/30/88
  6. # modified again by play@cwi.nl
  7. # and again by me.. maujp@uk.ac.warwick.cu
  8. # and again by mab@druwy.att.com for AMIGA
  9.  
  10. OBJ = m.o save.o jump.o display.o icon.o game.o read.o help.o fall.o scores.o edit.o
  11.  
  12. CFLAGS = -cw -cs -iamiga
  13. LIBS = lib:lc.lib lib:amiga.lib
  14.  
  15. # amiga-specific source files are in the "amiga" subdirectory
  16. CURSES = amiga/curses.o
  17. SOUNDS = amiga/sounds.o
  18.  
  19. all:    wanderer
  20.  
  21. wanderer:    $(OBJ) $(CURSES) $(SOUNDS)
  22.     blink to wanderer from lib:c.o $(OBJ) $(CURSES) $(SOUNDS) lib $(LIBS) sc sd batch nd
  23.  
  24. # $(OBJ): wand_head.h
  25.