home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 198_02 / unix.mk < prev    next >
Makefile  |  1990-01-23  |  628b  |  23 lines

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