home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / diffs / texinfo-.1 / util / makefile.djg < prev   
Encoding:
Makefile  |  1993-11-28  |  620 b   |  29 lines

  1. *** orig/texinfo-.1/util/makefile.djg    Sun Aug 29 19:13:02 1993
  2. --- src/texinfo-.1/util/makefile.djg    Sun Nov 28 02:04:42 1993
  3. ***************
  4. *** 0 ****
  5. --- 1,23 ----
  6. + common = ../libtxi
  7. + LIBS = -L$(common) -ltxi
  8. + LOADLIBES = $(LIBS)
  9. + CFLAGS = -O2 -I$(common)
  10. + LDFLAGS = -s
  11. + all: texindex.exe
  12. + .c.o:
  13. +     gcc -c -I. -I$(common) $(CFLAGS) $<
  14. + texindex.exe : texindex
  15. +     coff2exe texindex
  16. + texindex: texindex.o $(common)/libtxi.a
  17. +     gcc $(LDFLAGS) -o texindex texindex.o $(LOADLIBES)
  18. + texindex.o: texindex.c $(common)/getopt.h
  19. + clean :
  20. +     -del *.o
  21. +     -del texindex
  22.