home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Programming / MiniGL / makefile.68k < prev    next >
Encoding:
Makefile  |  2000-04-07  |  627 b   |  41 lines

  1. #
  2. # $Id: makefile.68k,v 1.1.1.1 2000/04/07 19:44:48 tfrieden Exp $
  3. #
  4. # $Date: 2000/04/07 19:44:48 $
  5. # $Revision: 1.1.1.1 $
  6. #
  7. # (C) 1999 by Hyperion
  8. # All rights reserved
  9. #
  10. # This file is part of the MiniGL library project
  11. # See the file Licence.txt for more details
  12. #
  13. #
  14. .PHONY: GLTest2 demos
  15. all:
  16.     $(MAKE) -C Build all
  17.  
  18. all.ppc:
  19.     $(MAKE) -C Build.ppc all
  20.  
  21. mgl:
  22.     $(MAKE) -C Build lib
  23.     cp include/mgl/*.h /usr/local/include/mgl
  24.     cp lib/libmgl.a /usr/local/lib
  25.  
  26. clean:
  27.     $(MAKE) -C Build clean
  28.  
  29. clean.ppc:
  30.     $(MAKE) -C Build.ppc clean
  31.  
  32.  
  33. test:
  34.     mungfriend clear trace
  35.     ./bounce >ram:yyy
  36.     mungfriend write ram:xxx
  37.     mungfriend info
  38.  
  39.  
  40.  
  41.