home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume9 / uemacs3.8b / part01 / Makefile < prev    next >
Makefile  |  1987-05-04  |  585b  |  19 lines

  1. CFLAGS=        -O
  2.  
  3. OFILES=        ansi.o basic.o bind.o buffer.o display.o file.o \
  4.         fileio.o hp150.o line.o lock.c main.o random.o region.o \
  5.         search.o spawn.o tcap.o termio.o vt52.o window.o word.o \
  6.         exec.o eval.o isearch.o
  7.  
  8. CFILES=        ansi.c basic.c bind.c buffer.c display.c  file.c \
  9.         fileio.c hp150.c line.c lock.c main.c random.c region.c \
  10.         search.c spawn.c tcap.c termio.c vt52.c window.c word.c \
  11.         exec.c eval.c isearch.c
  12.  
  13. HFILES=        estruct.h edef.h efunc.h epath.h ebind.h evar.h esearch.h
  14.  
  15. emacs:        $(OFILES)
  16.         $(CC) $(CFLAGS) $(OFILES) -ltermcap -lc -o emacs
  17.  
  18. $(OFILES):    $(HFILES)
  19.