home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games 1995 January / amigagames-1995-01.iso / archive / spiele / publicdomain / sk003.dms / sk003.adf / src / makefile next >
Makefile  |  2001-01-01  |  437b  |  21 lines

  1. .s.o:
  2.     as $*.s
  3.  
  4. EVERYTHING = tetris.o tetwbench.o tetrisvars.o tetrissound.o tetrisblit.o tetrisdata.o tetrisprint.o
  5.  
  6. game: $(EVERYTHING)
  7.     ln -w $(EVERYTHING) -o game +C
  8.     copy game to tetris
  9.  
  10. sound:    tetrissound.o
  11.     ln -w tetrissound.o -o sound
  12.  
  13. tetwbench: tetwbench.o
  14. tetris: tetris.o
  15. tetrisvars: tetrisvars.o
  16. tetrissound: tetrissound.o
  17. tetrisblit: tetrisblit.o
  18. tetrisdata: tetrisdata.o
  19. tetrisprint: tetrisprint.o
  20. $(EVERYTHING): tetris.i
  21.