home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / program / d / indent / !Indent / MakeFile < prev    next >
Encoding:
Makefile  |  1991-03-17  |  903 b   |  37 lines

  1. INCLUDE = -j$$.usr.pmoore.utils
  2. LINK = cc -o 
  3. LFLAGS = 
  4. CC = cc -c
  5. CFLAGS = 
  6. LIBS = -Llib:stubs.o -Llib:utils.o
  7. # There appears to be a bug in ansilib -- no mktime -- so I'm using stubs for now :-(
  8.  
  9. all: !RunImage
  10.      echo all up to date
  11.  
  12. !RunImage: o.args o.comment o.globs o.indent o.io o.lexi o.parse
  13.           $(LINK) !RunImage $(LFLAGS) args.o comment.o globs.o indent.o io.o lexi.o parse.o $(LIBS)
  14.  
  15. # add the headers some time, and mkptypes for the auto-generated headers...
  16.  
  17. o.args: c.args
  18.         $(CC) $(CFLAGS) args.c $(INCLUDE)
  19.  
  20. o.comment: c.comment
  21.         $(CC) $(CFLAGS) comment.c $(INCLUDE)
  22.  
  23. o.globs: c.globs
  24.         $(CC) $(CFLAGS) globs.c $(INCLUDE)
  25.  
  26. o.indent: c.indent
  27.         $(CC) $(CFLAGS) indent.c $(INCLUDE)
  28.  
  29. o.io: c.io
  30.         $(CC) $(CFLAGS) io.c $(INCLUDE)
  31.  
  32. o.lexi: c.lexi
  33.         $(CC) $(CFLAGS) lexi.c $(INCLUDE)
  34.  
  35. o.parse: c.parse
  36.         $(CC) $(CFLAGS) parse.c $(INCLUDE)
  37.