home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-11-28 | 494 b | 26 lines |
- *** orig/texinfo-.1/libtxi/makefile.djg Sun Aug 29 19:08:22 1993
- --- src/texinfo-.1/libtxi/makefile.djg Sun Aug 29 21:31:06 1993
- ***************
- *** 0 ****
- --- 1,20 ----
- + OBJS = getopt.o getopt1.o
- +
- + PROGS = libtxi.a
- +
- + CFLAGS = -O2
- +
- + .c.o:
- + gcc -c -I. $(CFLAGS) $<
- +
- + libtxi.a: $(OBJS)
- + ar qcv libtxi.a $(OBJS)
- + ranlib libtxi.a
- +
- + getopt.o: getopt.c getopt.h
- + getopt1.o: getopt1.c getopt.h
- + alloca.o: alloca.c
- +
- + clean :
- + -del *.o
- + -del *.a
-