home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / turbo_c / turbbook.arc / MAKEFILE < prev    next >
Text File  |  1988-07-04  |  2KB  |  58 lines

  1. CFLAGS = -O -Z
  2.  
  3. .c.obj:
  4.     tcc $(CFLAGS) -c $<
  5.  
  6. sayings.exe: sayings.obj maxims.obj thelp.obj twindow.obj ibmpc.obj
  7.     tcc $(CFLAGS) -esayings sayings.obj maxims.obj thelp.obj twindow.obj ibmpc.obj
  8.  
  9. prom.exe: prom.obj promote.obj twindow.obj ibmpc.obj
  10.     tcc $(CFLAGS) -eprom prom.obj promote.obj twindow.obj ibmpc.obj
  11.  
  12. popup.exe: popup.obj exec.obj testmove.obj promote.obj ccolor.obj \
  13. fasttest.obj notepad.obj ordent.obj maxims.obj poems.obj editor.obj \
  14. entry.obj thelp.obj tmenu.obj twindow.obj resident.obj ibmpc.obj
  15.     tcc $(CFLAGS) -epopup *.obj
  16.  
  17. poetry.exe: poetry.obj poems.obj thelp.obj twindow.obj ibmpc.obj
  18.     tcc $(CFLAGS) -epoetry poetry.obj poems.obj thelp.obj twindow.obj ibmpc.obj
  19.  
  20. order.exe: order.obj ordent.obj entry.obj thelp.obj twindow.obj ibmpc.obj
  21.     tcc $(CFLAGS) -eorder order.obj ordent.obj entry.obj thelp.obj twindow.obj ibmpc.obj
  22.  
  23. note.exe: note.obj notepad.obj editor.obj thelp.obj twindow.obj ibmpc.obj
  24.     tcc $(CFLAGS) -enote note.obj notepad.obj editor.obj thelp.obj twindow.obj ibmpc.obj
  25.  
  26. move.exe: move.obj testmove.obj twindow.obj ibmpc.obj
  27.     tcc $(CFLAGS) -emove move.obj testmove.obj twindow.obj ibmpc.obj
  28.  
  29. menu.exe: menu.obj exec.obj testmove.obj promote.obj ccolor.obj \
  30. fasttest.obj notepad.obj ordent.obj maxims.obj poems.obj editor.obj \
  31. entry.obj thelp.obj tmenu.obj twindow.obj ibmpc.obj
  32.     tcc $(CFLAGS) -emenu *.obj
  33.  
  34. fast.exe: fast.obj fasttest.obj twindow.obj ibmpc.obj
  35.     tcc $(CFLAGS) -efast fast.obj fasttest.obj twindow.obj ibmpc.obj
  36.  
  37. color.exe: color.obj ccolor.obj twindow.obj ibmpc.obj
  38.     tcc $(CFLAGS) -ecolor color.obj ccolor.obj twindow.obj ibmpc.obj
  39.  
  40. clock.exe: clock.obj ibmpc.obj
  41.  
  42.  
  43. popup.obj:    popup.c twindow.h
  44. exec.obj:    exec.c twindow.h keys.h
  45. testmove.obj:    testmove.c twindow.h keys.h
  46. promote.obj:    promote.c twindow.h keys.h
  47. ccolor.obj:    ccolor.c twindow.h keys.h
  48. fasttest.obj:    fasttest.c twindow.h
  49. notepad.obj:    notepad.c twindow.h
  50. ordent.obj:    ordent.c twindow.h
  51. maxims.obj:    maxims.c twindow.h keys.h
  52. poems.obj:    poems.c twindow.h keys.h
  53. editor.obj:    editor.c twindow.h keys.h
  54. entry.obj:    entry.c twindow.h keys.h
  55. thelp.obj:    thelp.c twindow.h keys.h
  56. tmenu.obj:    tmenu.c twindow.h keys.h
  57. twindow.obj:    twindow.c twindow.h keys.h
  58.