home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 270_01 / est.mk < prev    next >
Text File  |  1979-12-31  |  384b  |  21 lines

  1. # Generic make for a single module program.
  2. #
  3. .SUFFIXES
  4. OBJPATH =o\ 
  5. .PATH.obj=o
  6. DEBUG = -Zi -Od
  7.  
  8.  
  9. #
  10. # This rule says a .OBJ file should be created by
  11. # using the MS C (version 5.0) compiler on a .C file.
  12. #
  13. .c.obj    :
  14.     cl -c -Zp -AS -Gs -Fo$(OBJPATH)$*.obj $<
  15.  
  16. all            : est.exe
  17.  
  18. est.exe         : est.obj
  19.         link $(OBJPATH)est;
  20.  
  21.