i-bash/lib/doc-support/Makefile

24 lines
342 B
Makefile
Raw Normal View History

1996-08-26 18:22:31 +00:00
GETOPT = ${topdir}/builtins/getopt.o
OBJECTS = texindex.o $(GETOPT)
SOURCES = texindex.c
LDFLAGS = -g
srcdir = .
VPATH = .:$(srcdir)
.c.o:
rm -f $@
$(CC) $(CFLAGS) -c $<
all: texindex
texindex: texindex.o
$(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBS)
clean:
rm -f texindex.o
realclean distclean maintainer-clean: clean
rm -f texindex