home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / UE311MAK.ZIP / MAKEXENX < prev    next >
Text File  |  1990-07-20  |  662b  |  33 lines

  1. #    Xenix makefile for
  2. #        MicroEMACS 3.10
  3. #        (C)Copyright 1990 by Daniel Lawrence
  4. #        all rights reserved
  5.  
  6. # options and arguments to the C compiler
  7.  
  8. CFLAGS=    -O -I.
  9.  
  10. # list of header files
  11.  
  12. HFILES = estruct.h edef.h efunc.h epath.h ebind.h eproto.h
  13.  
  14. #list of object files
  15.  
  16. F1 = basic.o bind.o buffer.o
  17. F2 = char.o crypt.o display.o dolock.o
  18. F3 = eval.o exec.o file.o
  19. F4 = fileio.o unix.o input.o
  20. F5 = isearch.o line.o lock.o
  21. F6 = main.o mouse.o
  22. F7 = random.o region.o search.o
  23. F8 = tags.o window.o word.o
  24.  
  25. # product list
  26.  
  27. all:    emacs
  28.  
  29. OFILES =    $(F1) $(F2) $(F3) $(F4) $(F5) $(F6) $(F7) $(F8)
  30.  
  31. emacs:        $(OFILES)
  32.         $(CC) $(CFLAGS) $(OFILES) -ltermcap -lc -o bin/emacs
  33.