home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / IMPLIST.ZIP / IMPLIST.MAK < prev    next >
Text File  |  1991-07-28  |  1KB  |  30 lines

  1. #--------------------------------------------------------------------*
  2. # This is a sample make file for IMPLIST.C.                          *
  3. #                                                                    *
  4. # To use, enter the following at an OS/2 command line:               *
  5. #                                                                    *
  6. #    NMAKE /F IMPLIST.MAK                                            *
  7. #                                                                    *
  8. #--------------------------------------------------------------------*
  9. # Link IMPLIST.EXE if the object components are younger.             *
  10. # The primary target is built after the dependents are built.        *
  11. # The module definition file provides OS/2 window compatibility.     *
  12. #--------------------------------------------------------------------*
  13. IMPLIST.EXE:  IMPLIST.OBJ 
  14.    LINK  IMPLIST,IMPLIST,IMPLIST,,IMPLIST.DEF; 
  15.  
  16. #--------------------------------------------------------------------*
  17. # Compile IMPLIST.OBJ if the source component is younger.            *
  18. #--------------------------------------------------------------------*
  19. IMPLIST.OBJ:  IMPLIST.C SYMTYPES.H 
  20.    CL /AL /Lp /c /G2 /W4 IMPLIST.C
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.