home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d7xx / d702 / indent.lha / Indent / Indent.lha / indent-1.4Makefile.amiga < prev    next >
Text File  |  1992-06-05  |  693b  |  27 lines

  1. # Configurable things
  2. #
  3. CFLAGS = -dAMIGA
  4. LC = lc
  5.  
  6. # Non-configurable -- do not change
  7. #
  8. SRC =      indent.c io.c lexi.c parse.c pr_comment.c args.c globs.c backup.c
  9. OBJ =      indent.o io.o lexi.o parse.o pr_comment.o args.o globs.o backup.o
  10. HEADERS = indent_globs.h version.h
  11.  
  12. # Make the program and documentation
  13. #
  14. all: indent
  15.  
  16. indent: ${OBJ}
  17.         blink from lib:c.o ${OBJ} to indent lib lib:lcm.lib lib:lc.lib nodebug
  18.  
  19. indent.o: indent.c indent.h sys.h
  20. io.o: io.c indent.h sys.h
  21. lexi.o: lexi.c indent.h sys.h
  22. parse.o: parse.c indent.h sys.h
  23. pr_comment.o: pr_comment.c indent.h sys.h
  24. args.o: args.c indent.h sys.h version.h
  25. globs.o: globs.c sys.h
  26. backup.o: backup.c backup.h dirent_def.h sys.h
  27.