home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / texted / uemacs / a147src / ue311extra / MakeFile < prev    next >
Makefile  |  1991-06-26  |  751b  |  28 lines

  1. # Make file for uEmacs 3.11
  2.  
  3. #CCflags = -c -I<C$Clib>,<C$RISC_OSLib> -throwback -pcc
  4. CCflags = -c -I<C$Clib>,<C$RISC_OSLib> -throwback -w -DWIMP_MODE
  5.  
  6. Linkflags = -o $@
  7.  
  8. LIBS = $.clib.o.stubs $.risc_oslib.o.risc_oslib lib.Utils
  9.  
  10. OBJS = o.Basic o.Bind o.Buffer o.Char o.Crypt o.Display o.Eval \
  11.       o.Exec o.File o.Fileio o.Input o.Isearch o.Line o.Main o.Mouse o.Random \
  12.       o.Region o.Riscos o.RiscOSwimp o.Screen o.Search o.Tags o.Window o.Word
  13.  
  14. LINKOBJS = $(OBJS)
  15.  
  16. HDRS = h.Ebind h.Edef h.Efunc h.Elang h.Epath h.Eproto h.Estruct h.Evar
  17.  
  18. # Conversion rules:
  19. .c.o:;  cc $(CCflags) -o $@ $< 
  20.                                
  21. !uE311: !RunImage
  22.  
  23. !RunImage: $(OBJS)
  24.         Link $(Linkflags) $(LINKOBJS) $(LIBS)
  25.         Squeeze $@
  26.  
  27. $(OBJS): $(HDRS)
  28.