home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 165 / DSKPARM.ZIP / MAKEFILE < prev    next >
Text File  |  1986-10-08  |  415b  |  27 lines

  1. # 10/6/86 asp   Build PCTJ Info
  2. #        MSC V4.0 and BSW-Make
  3.  
  4. .SUFFIXES : .exe .obj .c .asm
  5.  
  6. .c.obj :
  7.     cc  $(CFLAGS) -c $*.c 
  8.  
  9. .asm.obj :
  10.     masm $*; 
  11.  
  12. CFLAGS = -Zp
  13. #CFLAGS = -Od -Zi
  14.  
  15. info.exe : info.obj absread.obj
  16.     link info absread; 
  17.  
  18. show.exe : show.obj absread.obj
  19.     link show absread; 
  20.  
  21. absread.obj : absread.asm
  22.  
  23. info.obj : info.c structs.h dosfns.h
  24.  
  25. show.obj : show.c structs.h dosfns.h
  26.  
  27.