home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 10 / embedcp / test / async2.mak < prev    next >
Text File  |  1991-03-23  |  608b  |  47 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +ASYNC2.CFG
  5. TASM = TASM
  6. TLINK = tlink
  7.  
  8.  
  9. #        *Implicit Rules*
  10. .c.obj:
  11.   $(CC) -c {$< }
  12.  
  13. .cpp.obj:
  14.   $(CC) -c {$< }
  15.  
  16. #        *List Macros*
  17.  
  18.  
  19. EXE_dependencies =  \
  20.   async2.obj
  21.  
  22. #        *Explicit Rules*
  23. async2.exe: async2.cfg $(EXE_dependencies)
  24.   $(TLINK) /v/x/c/P- @&&|
  25. ..\startup\c0l.obj+
  26. async2.obj+
  27. ..\lib\scc+
  28. ..\lib\setvect
  29. async2
  30.         # no map file
  31. |
  32.  
  33.  
  34. #        *Individual File Dependencies*
  35. async2.obj: async2.c 
  36.  
  37. #        *Compiler Configuration File*
  38. async2.cfg: async2.mak
  39.   copy &&|
  40. -ml
  41. -v
  42. -ID:\MIO\INCLUDE
  43. -P.C
  44. | async2.cfg
  45.  
  46.  
  47.