home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / games / backgmmn.zip / CIAOLIB.MAK < prev    next >
Text File  |  1987-12-24  |  1KB  |  42 lines

  1. #
  2. #  CIAOLIB -- makefile for CIAO.LIB
  3. # "Never MAKE At Midnight!"
  4. #
  5. ciao.obj: ciao.c        # ibm video RAM primitives
  6.    cl -c ciao.c
  7.  
  8. clairol.obj: clairol.c  # popout to set screen attributes
  9.    cl -c clairol.c
  10.  
  11. sound.obj: sound.c      # sound effects primitives
  12.    cl -c sound.c
  13.  
  14. wprintf.obj: wprintf.c  # formatted window output, with attributes
  15.    cl -c wprintf.c
  16.  
  17. keyin.obj: keyin.c      # character input
  18.    cl -c keyin.c
  19.  
  20. getms.obj: getms.c      # string input
  21.    cl -c getms.c
  22.  
  23. noop.obj: noop.c        # minor but useful utils
  24.    cl -c noop.c
  25.  
  26. xeq.obj: xeq.c          # run a file in a directory
  27.    cl -c xeq.c
  28.  
  29. typeafil.obj: typeafil.c  # patented typeafile in a windowbox with word wrap
  30.    cl -c typeafil.c
  31.  
  32. money.obj: money.c
  33.    cl -c money.c
  34.  
  35. keydefs.obj: keydefs.c  # patented Fn key popout menu
  36.    cl -c keydefs.c
  37.  
  38. ciao.lib: ciao.obj clairol.obj sound.obj wprintf.obj \
  39.           keyin.obj getms.obj noop.obj xeq.obj typeafil.obj money.obj
  40.    lib ciao+ciao+wprintf+keyin+getms+noop+sound+clairol+xeq+typeafil+money+keydefs,ciao.xrf;
  41.  
  42.