home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / DBWBOUND.ZIP / MAKERAY.OS2 < prev    next >
Text File  |  1990-05-15  |  2KB  |  76 lines

  1. #########################################################################
  2. #                                     #
  3. #             Copyright (c) 1987, David B. Wecker            #
  4. #                 All Rights Reserved                #
  5. #                                     #
  6. #  This file is part of DBW_Render                    #
  7. #                                     #
  8. #  DBW_Render is distributed in the hope that it will be useful, but    #
  9. #  WITHOUT ANY WARRANTY. No author or distributor accepts        #
  10. #  responsibility to anyone for the consequences of using it or for    #
  11. #  whether it serves any particular purpose or works at all, unless    #
  12. #  he says so in writing. Refer to the DBW_Render General Public    #
  13. #  License for full details.                        #
  14. #                                     #
  15. #  Everyone is granted permission to copy, modify and redistribute    #
  16. #  DBW_Render, but only under the conditions described in the        #
  17. #  DBW_Render General Public License. A copy of this license is        #
  18. #  supposed to have been given to you along with DBW_Render so you    #
  19. #  can know your rights and responsibilities. It should be in a file    #
  20. #  named COPYING. Among other things, the copyright notice and this    #
  21. #  notice must be preserved on all copies.                #
  22. #########################################################################
  23. #                                    #
  24. # Authors:                                #
  25. #    DBW - David B. Wecker                        #
  26. #    jhl - John H. Lowery (IBM port)                    #
  27. #                                    #
  28. # Versions:                                #
  29. #    V1.0 870125 DBW    - First released version            #
  30. #    V2.0 891031 jhl - ported to IBM PC, Microsoft C 5.1, MS MAKE     #
  31. #         900515 kvl    - compiled for OS/2 Bound version by Kevin Lowey#
  32. #              (No source code changes, just make file change#
  33. #                                    #
  34. #########################################################################
  35.  
  36. COMPILE = CL /AL /Gs /c 
  37.  
  38. ray.obj : ray.c ray.h
  39.     $(COMPILE) ray.c
  40.  
  41. cal.obj : cal.c ray.h
  42.     $(COMPILE) cal.c
  43.  
  44. ext.obj : ext.c ray.h
  45.     $(COMPILE) ext.c
  46.  
  47. fil.obj : fil.c ray.h
  48.     $(COMPILE) fil.c
  49.  
  50. hit.obj : hit.c ray.h
  51.     $(COMPILE) hit.c
  52.  
  53. int.obj : int.c ray.h
  54.     $(COMPILE) int.c
  55.  
  56. mth.obj : mth.c ray.h
  57.     $(COMPILE) mth.c
  58.  
  59. rnd.obj : rnd.c ray.h
  60.     $(COMPILE) rnd.c
  61.  
  62. tex.obj : tex.c ray.h
  63.     $(COMPILE) tex.c
  64.  
  65. val.obj : val.c ray.h
  66.     $(COMPILE) val.c
  67.  
  68. # WARNING:  DO NOT allow LINK's command line to exceed 128 characters
  69. #            or it will fail.
  70.  
  71. ray.exe : ray.obj cal.obj ext.obj fil.obj hit.obj int.obj mth.obj \
  72.           rnd.obj tex.obj val.obj
  73. LINK ray+cal+ext+fil+hit+int+mth+rnd+tex+val,ray /ST:32000,ray /MAP;
  74. bind ray.exe c:\os2\doscalls.lib
  75.  
  76.