home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / DBWBOUND.ZIP / MAKEDISP < prev    next >
Text File  |  1989-11-04  |  2KB  |  52 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. #                         NOTE:  assumes automatic library inclusion    #
  32. #                                on link, including GRAPHICS.LIB        #
  33. #                                    #
  34. #########################################################################
  35.  
  36. COMPILE = CL /AL /Gs /c 
  37.  
  38. display.obj : display.c display.h
  39.     $(COMPILE) display.c
  40.  
  41. gifcompr.obj: gifcompr.c display.h
  42.         $(COMPILE) gifcompr.c
  43.  
  44. # WARNING:  DO NOT allow LINK's command line to exceed 128 characters
  45. #            or it will fail.
  46.  
  47. display.exe : display.obj 
  48.     LINK display+gifcompr, tmp, display /MAP;
  49.         EXEPACK tmp.exe display.exe
  50.         DEL tmp.exe
  51.  
  52.