home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-11-28 | 620 b | 29 lines |
- *** orig/texinfo-.1/util/makefile.djg Sun Aug 29 19:13:02 1993
- --- src/texinfo-.1/util/makefile.djg Sun Nov 28 02:04:42 1993
- ***************
- *** 0 ****
- --- 1,23 ----
- + common = ../libtxi
- + LIBS = -L$(common) -ltxi
- + LOADLIBES = $(LIBS)
- +
- + CFLAGS = -O2 -I$(common)
- + LDFLAGS = -s
- +
- + all: texindex.exe
- +
- + .c.o:
- + gcc -c -I. -I$(common) $(CFLAGS) $<
- +
- + texindex.exe : texindex
- + coff2exe texindex
- +
- + texindex: texindex.o $(common)/libtxi.a
- + gcc $(LDFLAGS) -o texindex texindex.o $(LOADLIBES)
- +
- + texindex.o: texindex.c $(common)/getopt.h
- +
- + clean :
- + -del *.o
- + -del texindex
-