home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / indent / makefile.amiga < prev    next >
Makefile  |  2000-04-21  |  723b  |  25 lines

  1. # Makefile for GNU Indent using SAS/C 5.10
  2. # (Couldn't get it to compile under SAS/C 6.0 -- the new compiler
  3. # produces faulty code!!!!)
  4.  
  5. CFLAGS = -dAMIGA -j85i
  6. LC = lc
  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. all: indent
  13.  
  14. indent: ${OBJ}
  15.         blink from lib:c.o ${OBJ} to indent lib lib:lcm.lib lib:lc.lib nodebug
  16.  
  17. indent.o: indent.c indent.h sys.h
  18. io.o: io.c indent.h sys.h
  19. lexi.o: lexi.c indent.h sys.h
  20. parse.o: parse.c indent.h sys.h
  21. pr_comment.o: pr_comment.c indent.h sys.h
  22. args.o: args.c indent.h sys.h version.h
  23. globs.o: globs.c sys.h
  24. backup.o: backup.c backup.h sys.h
  25.