# Makefile for GNU texinfo/libtxi. -*- Indented-Text -*- # Copyright (C) 1993 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #### Start of system configuration section. #### srcdir = @srcdir@ VPATH = $(srcdir) CC = @CC@ INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ LN = ln RM = rm -f TAR = tar MKDIR = mkdir COMPRESS= compress RANLIB = @RANLIB@ DEFS = @DEFS@ LIBS = @LIBS@ LOADLIBES = $(LIBS) # This is normally inherited from parent make, but if someone wants to # build libtxi.a alone, this variable will still be properly defined. ALLOCA = @ALLOCA@ SHELL = /bin/sh CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = $(exec_prefix)/bin # Prefix for each installed program, normally empty or `g'. binprefix = libdir = $(prefix)/lib # Prefix for each installed man page, normally empty or `g'. manprefix = mandir = $(prefix)/man/man1 manext = 1 infodir = $(prefix)/info #### End of system configuration section. #### SRCS = getopt.c getopt.h getopt1.c bzero.c OBJS = getopt.o getopt1.o bzero.o $(ALLOCA) PROGS = libtxi.a all: $(PROGS) sub-all: all .c.o: $(CC) -c $(CPPFLAGS) -I. -I$(srcdir) $(DEFS) $(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 install: uninstall: TAGS: $(SRCS) etags $(SRCS) clean: rm -f *.o a.out core core.* $(PROGS) mostlyclean: clean distclean: clean rm -f Makefile config.status realclean: distclean rm -f TAGS Makefile: Makefile.in ../config.status cd ..; sh config.status # Prevent GNU make v3 from overflowing arg limit on SysV. .NOEXPORT: # eof