home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 001-099 / ff093.lzh / MicroEmacs / source / src.arc / makefile < prev    next >
Makefile  |  1987-08-16  |  1KB  |  47 lines

  1. # Makefile for Amiga MicroEMACS V38i
  2. #   Added some flexability to the dependency of the header files. P. LINDSAY
  3.  
  4. # need these flags so Aztec will be happy
  5. CFLAGS=        +l -Z12000
  6.  
  7. HFILES          = estruct.h edef.h 
  8. HBINDFUNC       = efunc.h ebind.h
  9. HEPATH          = epath.h
  10. HEVAR           = evar.h
  11.  
  12. OEPATH         = bind.o
  13. OEBINDEFUNC     = main.o 
  14. OEVAR         = eval.o 
  15.  
  16. OFILES=        ansi.o basic.o $(OEPATH) buffer.o crypt.o dg10.o \
  17.         display.o $(OEVAR) exec.o file.o fileio.o \
  18.         hp110.o hp150.o ibmpc.o input.o isearch.o line.o \
  19.         lock.o $(OEBINDEFUNC) random.o region.o search.o spawn.o \
  20.         st520.o tcap.o termio.o console.o tipc.o vmsvt.o vt52.o \
  21.         window.o word.o z309.o
  22.  
  23. OFILES1=    ansi.o basic.o buffer.o crypt.o dg10.o \
  24.         display.o exec.o file.o fileio.o \
  25.         hp110.o hp150.o ibmpc.o input.o isearch.o line.o \
  26.         lock.o random.o region.o search.o spawn.o \
  27.         st520.o tcap.o termio.o console.o tipc.o vmsvt.o vt52.o \
  28.         window.o word.o z309.o
  29.  
  30. CFILES=        ansi.c basic.c bind.c buffer.c crypt.c dg10.c \
  31.         display.c eval.c exec.c file.c fileio.c \
  32.         hp110.c hp150.c ibmpc.c input.c isearch.c line.c \
  33.         lock.c main.c random.c region.c search.c spawn.c \
  34.         st520.c tcap.c termio.c console.c tipc.c vmsvt.c vt52.c \
  35.         window.c word.c z309.c
  36.  
  37. emacs: $(OFILES)
  38.     ln $(OFILES) -o emacs -lc32
  39.  
  40. $(OEPATH): $(HFILES) $(HEPATH)
  41.  
  42. $(OEBINDEFUNC): $(HFILES) $(HBINDFUNC)
  43.  
  44. $(OEVAR): $(HFILES) $(HEVAR)
  45.  
  46. $(OFILES1): $(HFILES)
  47.