home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / diffs / texinfo-.1 / libtxi / makefile.djg
Encoding:
Makefile  |  1993-11-28  |  494 b   |  26 lines

  1. *** orig/texinfo-.1/libtxi/makefile.djg    Sun Aug 29 19:08:22 1993
  2. --- src/texinfo-.1/libtxi/makefile.djg    Sun Aug 29 21:31:06 1993
  3. ***************
  4. *** 0 ****
  5. --- 1,20 ----
  6. + OBJS =  getopt.o getopt1.o
  7. + PROGS = libtxi.a
  8. + CFLAGS = -O2
  9. + .c.o:
  10. +     gcc -c -I. $(CFLAGS) $<
  11. + libtxi.a: $(OBJS)
  12. +     ar qcv libtxi.a $(OBJS)
  13. +     ranlib libtxi.a
  14. + getopt.o: getopt.c getopt.h
  15. + getopt1.o: getopt1.c getopt.h
  16. + alloca.o: alloca.c
  17. + clean :
  18. +     -del *.o
  19. +     -del *.a
  20.