home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff256.lzh / Stevie / makefile.dos < prev    next >
Makefile  |  1989-10-19  |  2KB  |  95 lines

  1. #
  2. # Makefile for DOS
  3. #
  4. # This makefile is set up for Microsoft C 5.1
  5. #
  6.  
  7. #
  8. # Compact model lets us edit large files, but keep small model code
  9. #
  10. MODEL= /AC 
  11. CFLAGS = $(MODEL) /J
  12.  
  13. LIBPATH = F:\LIB
  14.  
  15. MACH=    dos.obj
  16.  
  17. OBJ=    main.obj edit.obj linefunc.obj normal.obj cmdline.obj charset.obj \
  18.     mk.obj format_l.obj regexp.obj regsub.obj version.obj \
  19.     misccmds.obj help.obj dec.obj inc.obj search.obj alloc.obj \
  20.     s_io.obj mark.obj screen.obj fileio.obj param.obj $(MACH)
  21.  
  22. all:    stevie.exe
  23.  
  24. main.obj:    main.c
  25.     cl -c $(CFLAGS) main.c
  26.  
  27. format_l.obj:    format_l.c
  28.     cl -c $(CFLAGS) format_l.c
  29.  
  30. mk.obj:    mk.c
  31.     cl -c $(CFLAGS) mk.c
  32.  
  33. regexp.obj:    regexp.c
  34.     cl -c $(CFLAGS) regexp.c
  35.  
  36. regsub.obj:    regsub.c
  37.     cl -c $(CFLAGS) regsub.c
  38.  
  39. version.obj:    version.c
  40.     cl -c $(CFLAGS) version.c
  41.  
  42. alloc.obj : alloc.c
  43.     cl -c $(CFLAGS) alloc.c
  44.  
  45. edit.obj : edit.c
  46.     cl -c $(CFLAGS) edit.c
  47.  
  48. s_io.obj : s_io.c
  49.     cl -c $(CFLAGS) s_io.c
  50.  
  51. linefunc.obj : linefunc.c
  52.     cl -c $(CFLAGS) linefunc.c
  53.  
  54. normal.obj : normal.c
  55.     cl -c $(CFLAGS) normal.c
  56.  
  57. cmdline.obj : cmdline.c
  58.     cl -c $(CFLAGS) cmdline.c
  59.  
  60. charset.obj : charset.c
  61.     cl -c $(CFLAGS) charset.c
  62.  
  63. misccmds.obj : misccmds.c
  64.     cl -c $(CFLAGS) misccmds.c
  65.  
  66. help.obj : help.c
  67.     cl -c $(CFLAGS) help.c
  68.  
  69. dec.obj : dec.c
  70.     cl -c $(CFLAGS) dec.c
  71.  
  72. inc.obj : inc.c
  73.     cl -c $(CFLAGS) inc.c
  74.  
  75. search.obj : search.c
  76.     cl -c $(CFLAGS) search.c
  77.  
  78. mark.obj : mark.c
  79.     cl -c $(CFLAGS) mark.c
  80.  
  81. screen.obj : screen.c
  82.     cl -c $(CFLAGS) screen.c
  83.  
  84. fileio.obj : fileio.c
  85.     cl -c $(CFLAGS) fileio.c
  86.  
  87. param.obj : param.c
  88.     cl -c $(CFLAGS) param.c
  89.  
  90. dos.obj : dos.c
  91.     cl -c $(CFLAGS) dos.c
  92.  
  93. stevie.exe : $(OBJ)
  94.     cl $(MODEL) *.obj $(LIBPATH)\setargv.obj -o stevie.exe /F 6000 /Lr -link /NOE
  95.