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

  1. CFLAGS=        -O
  2.  
  3. OFILES=        ansi.o basic.o bind.o buffer.o crypt.o dg10.o \
  4.         display.o eval.o exec.o file.o fileio.o \
  5.         hp110.o hp150.o ibmpc.o input.o isearch.o line.o \
  6.         lock.o main.o random.o region.o search.o spawn.o \
  7.         st520.o tcap.o termio.o tipc.o vmsvt.o vt52.o \
  8.         window.o word.o z309.o menu.o
  9.  
  10. CFILES=        ansi.c basic.c bind.c buffer.c crypt.c dg10.c \
  11.         display.c eval.c exec.c file.c fileio.c \
  12.         hp110.c hp150.c ibmpc.c input.c isearch.c line.c \
  13.         lock.c main.c random.c region.c search.c spawn.c \
  14.         st520.c tcap.c termio.c tipc.c vmsvt.c vt52.c \
  15.         window.c word.c z309.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.