home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fonts 1 / freshfonts1.bin / programs / amiga / pastex / archives / makeindex2_11.lha / makeindex2.11 / src / makefile.amg < prev    next >
Makefile  |  1992-02-25  |  552b  |  29 lines

  1. EXTHDRS = ctype.h stdio.h
  2.  
  3. HDRS = genind.h mkind.h scanid.h scanst.h
  4.  
  5. CC = lc
  6.  
  7. CFLAGS = -b0 -dOS_AMIGA=1
  8.  
  9. OBJS = genind.o mkind.o qsort.o scanid.o scanst.o sortid.o
  10.  
  11. SRCS = genind.c mkind.c qsort.c scanid.c scanst.c sortid.c
  12.  
  13. PROGRAM = makeindex
  14.  
  15. .c.o:
  16.     $(CC) $(CFLAGS) $*.c
  17.  
  18. $(PROGRAM): $(OBJS)
  19.     blink from lib:c.o $(OBJS) to $(PROGRAM)\
  20.     lib lib:lcnb.lib verbose
  21.  
  22. genind.o: genind.c mkind.h genind.h
  23. mkind.o: mkind.c mkind.h
  24. qsort.o: qsort.c mkind.h
  25. scanid.o: scanid.c mkind.h scanid.h
  26. scanst.o: scanst.c mkind.h scanst.h
  27. sortid.o: sortid.c mkind.h
  28.  
  29.