home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / GLEN / IS.ZIP / IS.MAK < prev    next >
Text File  |  1988-10-26  |  2KB  |  64 lines

  1. #
  2. # is.mak - make file for the IS batch file utility
  3. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
  4. #
  5. # Function hierarchy of IS (not including MS C standard library functions)
  6. #
  7. #                                     IS (main())
  8. #                                      |
  9. #    *-----------------------*---------*----------*--------------------*
  10. #    |                       |                    |                    | 
  11. # IS_FUN                 IS_COND              IS_COMP              IS_ERROR   
  12. #    |                                            | 
  13. #    *-----------*-----------*-----------*        *-----*-----*-----*
  14. #    |           |           |           |              |           |
  15. # IS_SYS     IS_FILE     IS_INPUT     IS_DISK       DATE_CMP     NUM_CMP 
  16. #                |
  17. #             _STRF  
  18. #
  19. # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
  20.  
  21. # ---  first, define some rules  ---
  22.  
  23. .c.obj:
  24.         $(msc) $(copt) /c $**
  25.  
  26. .obj.exe:
  27.         LINK @is.lnk
  28.  
  29. # ---  compile the source file(s)  ---
  30.  
  31. is.obj:       is.c 
  32.  
  33. is_fun.obj:   is_fun.c
  34.  
  35. is_cond.obj:  is_cond.c
  36.  
  37. is_comp.obj:  is_comp.c
  38.  
  39. is_error.obj: is_error.c
  40.  
  41. is_sys.obj:   is_sys.c
  42.  
  43. is_file.obj:  is_file.c 
  44.  
  45. is_input.obj: is_input.c
  46.  
  47. is_disk.obj:  is_disk.c
  48.  
  49. date_cmp.obj: date_cmp.c
  50.  
  51. num_cmp.obj:  num_cmp.c
  52.  
  53. _strf.obj:    _strf.c
  54.  
  55.  
  56. # ---  link the object module(s)  ---
  57.  
  58. is.exe: is.obj is_fun.obj is_cond.obj is_comp.obj is_error.obj is_sys.obj \
  59.         is_file.obj is_input.obj is_disk.obj \
  60.         date_cmp.obj num_cmp.obj _strf.obj
  61.        
  62. # end
  63.  
  64.