home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / communic / asycnch / makefile < prev   
Encoding:
Makefile  |  1991-07-01  |  289 b   |  20 lines

  1.  
  2. !if $d(DEBUG)
  3. objs=asynch.obj circleq.obj test.obj
  4. cargs=-ms -v -DDEBUG=1
  5.  
  6. test.exe: $(objs)
  7.     cc $(cargs) -etest.exe $(objs)
  8. !else
  9. objs=asynch.obj circleq.obj main.obj
  10. cargs=-ms -v
  11.  
  12. term.exe: $(objs)
  13.     cc $(cargs) -eterm.exe $(objs)
  14. !endif
  15.  
  16. .c.obj:
  17.     cc -c $(cargs) $<
  18.  
  19.  
  20.