home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / Makefile.z / Makefile
Encoding:
Makefile  |  2003-08-08  |  461 b   |  25 lines

  1. #
  2. #      @(#)Makefile 1.13 97/07/23 00:48:22
  3. #
  4. # Makefile to compile Java3D test programs
  5. #
  6. # variables that need values to build succesfully:
  7. #    CLASSPATH    The path for all imported Java Classes
  8.  
  9. .KEEP_STATE:
  10.  
  11. SUBDIRS = examples
  12.  
  13. SUBDIR_TARGETS = all clean clean-nuke
  14.  
  15. default-target: all
  16.  
  17. install:
  18.     @echo "install target is obsolete"
  19.  
  20. $(SUBDIR_TARGETS):
  21.     -@for i in $(SUBDIRS); do (                    \
  22.         echo "cd $$i; make $@";                    \
  23.         cd $$i ; make $@);                        \
  24.     done
  25.