Index: m4/src/Makefile.in diff -u m4/src/Makefile.in:1.1.1.1.2.6 m4/src/Makefile.in:removed --- m4/src/Makefile.in:1.1.1.1.2.6 Sat May 27 18:11:23 2006 +++ m4/src/Makefile.in Mon May 29 19:43:05 2006 @@ -1,112 +0,0 @@ -## Makefile.in -- Makefile for GNU m4 sources. -## -## Copyright (C) 1994, 2005, 2006 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 of the License, 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; See the file COPYING. if not, write to -## the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -## Boston, MA 02110-1301, USA. - -PACKAGE = @PACKAGE@ -VERSION = @VERSION@ - -SHELL = /bin/sh -srcdir = @srcdir@ -VPATH = @srcdir@ - -CC = @CC@ -CFLAGS = @CFLAGS@ -CPPFLAGS = @CPPFLAGS@ -DEFS = @DEFS@ -EXEEXT = @EXEEXT@ -INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -OBJEXT = @OBJEXT@ -STACKOVF = @STACKOVF@ - -prefix = @prefix@ -exec_prefix = @exec_prefix@ -transform = @program_transform_name@ -bindir = @bindir@ - -COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) -LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@ - -.SUFFIXES: -.SUFFIXES: .c .o .obj -.c.o: - $(COMPILE) $< -.c.obj: - $(COMPILE) $< - -O = .$(OBJEXT) - -INCLUDES = -I.. -I$(srcdir) -I$(srcdir)/../lib - -HEADERS = m4.h -SOURCES = m4.c builtin.c debug.c eval.c format.c freeze.c input.c \ -macro.c output.c path.c stackovf.c symtab.c -OBJECTS = m4$O builtin$O debug$O eval$O format$O freeze$O input$O \ -macro$O output$O path$O $(STACKOVF) symtab$O - -DISTFILES = Makefile.in $(HEADERS) $(SOURCES) \ -TAGS - -all: m4$(EXEEXT) - -m4$(EXEEXT): $(OBJECTS) ../lib/libm4.a - $(LINK) $(OBJECTS) ../lib/libm4.a $(LIBS) - -$(OBJECTS): ../config.h m4.h ../lib/obstack.h -builtin$O: ../lib/regex.h - -install: all - $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) - $(INSTALL_PROGRAM) m4$(EXEEXT) \ - $(DESTDIR)$(bindir)/"`echo m4 | sed '$(transform)'`"$(EXEEXT) - -uninstall: - rm -f $(DESTDIR)$(bindir)/"`echo m4 | sed '$(transform)'`"$(EXEEXT) - -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) - cd $(srcdir) && etags -i ../lib/TAGS $(HEADERS) $(SOURCES) - -mostlyclean: - rm -f *.o *.obj *._c *._o core core.* - -clean: mostlyclean - rm -f m4$(EXEEXT) - -distclean: clean - rm -f Makefile - -realclean: distclean - rm -f TAGS - -dist: $(DISTFILES) - @echo "Copying distribution files" - @for file in $(DISTFILES); do \ - ln $(srcdir)/$$file ../$(PACKAGE)-$(VERSION)/src 2> /dev/null \ - || cp -p $(srcdir)/$$file ../$(PACKAGE)-$(VERSION)/src; \ - done - -Makefile: Makefile.in ../config.status - cd .. && CONFIG_FILES=src/$@ CONFIG_HEADERS= ./config.status - -# Tell versions [3.59,3.63) of GNU make not to export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT:
