home *** CD-ROM | disk | FTP | other *** search
/ Best Objectech Shareware Selections / UNTITLED.iso / boss / word / text / 019 / makefile.dos < prev    next >
Makefile  |  1993-01-19  |  946b  |  29 lines

  1. CFILES = buffer.c cmds.c misc.c file.c main.c video.c ins.c\
  2.          sysdep.c screen.c paste.c ledit.c line.c vterm.c search.c text.c\
  3.          keymap.c replace.c window.c slang.c
  4. OBJS = buffer.obj cmds.obj misc.obj file.obj main.obj video.obj ins.obj\
  5.          sysdep.obj screen.obj paste.obj ledit.obj line.obj vterm.obj\
  6.          keymap.obj replace.obj window.obj slang.obj search.obj text.obj
  7. HFILES = buffer.h file.h display.h sysdep.h screen.h paste.h ins.h misc.h\
  8.          ledit.h cmds.h text.h keymap.h replace.h window.h slang.h line.h\
  9.      vterm.h search.h
  10. MFILES = makefile zip.lis vms.c bsd.c sys5.c sig.c sig.h display.c
  11. JFILES = emacs.jed jed.rc most.jed edt.jed fortran.jed jed.doc read.me
  12.  
  13. CC = bcc
  14. CFLAGS = -G -O2 -w -ml -Dmsdos -DUSE_MEMCPY
  15.  
  16. jed.exe: $(OBJS) $(HFILES)
  17.     $(CC) $(CFLAGS) -ejed.exe @jed.rsp
  18.     
  19. .c.obj:
  20.     $(CC) -c $(CFLAGS) $*.c
  21.  
  22. zip:
  23.     pkzip jed.zip @zip.lis
  24.     
  25. export:
  26.     export -zip.lis
  27.     
  28.  
  29.