]> sourceware.org Git - automake.git/commitdiff
Added missing files, rebuilt makefile
authorTom Tromey <tromey@redhat.com>
Fri, 22 Nov 1996 06:59:12 +0000 (06:59 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 22 Nov 1996 06:59:12 +0000 (06:59 +0000)
Makefile.in
lib/am/libtool.am [new file with mode: 0644]
libtool.am [new file with mode: 0644]
ltlibs.am [new file with mode: 0644]
version.texi

index 49406e4178d15fc16e2c93585fe305a5a8387aed..9cfebc84045a49496fec8b37da96d3d1813ccb98 100644 (file)
@@ -49,7 +49,7 @@ info_TEXINFOS = automake.texi
 
 pkgdata_DATA = clean-kr.am clean.am compile-kr.am comp-vars.am \
 compile.am data.am dejagnu.am depend.am depend2.am dist-vars.am footer.am \
-header.am header-vars.am kr-extra.am libs.am library.am \
+header.am header-vars.am kr-extra.am libs.am library.am libtool.am ltlibs.am \
 mans-vars.am program.am progs.am remake-hdr.am remake-subd.am \
 remake.am scripts.am subdirs.am tags.am tags-clean.am \
 texi-vers.am texinfos.am libs-clean.am \
diff --git a/lib/am/libtool.am b/lib/am/libtool.am
new file mode 100644 (file)
index 0000000..0c3e6a4
--- /dev/null
@@ -0,0 +1,30 @@
+## automake - create Makefile.in from Makefile.am
+## Copyright (C) 1994, 1995, 1996 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.
+.c.lo:
+       $(LIBTOOL) $(COMPILE) -c $<
+
+mostlyclean-libtool:
+## Don't remove 'core.*' because some distributions have eg "core.c".
+       rm -f *.lo
+
+clean-libtool:
+       rm -rf .libs
+
+distclean-libtool:
+
+maintainer-clean-libtool:
diff --git a/libtool.am b/libtool.am
new file mode 100644 (file)
index 0000000..0c3e6a4
--- /dev/null
@@ -0,0 +1,30 @@
+## automake - create Makefile.in from Makefile.am
+## Copyright (C) 1994, 1995, 1996 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.
+.c.lo:
+       $(LIBTOOL) $(COMPILE) -c $<
+
+mostlyclean-libtool:
+## Don't remove 'core.*' because some distributions have eg "core.c".
+       rm -f *.lo
+
+clean-libtool:
+       rm -rf .libs
+
+distclean-libtool:
+
+maintainer-clean-libtool:
diff --git a/ltlibs.am b/ltlibs.am
new file mode 100644 (file)
index 0000000..92b1597
--- /dev/null
+++ b/ltlibs.am
@@ -0,0 +1,32 @@
+## automake - create Makefile.in from Makefile.am
+## Copyright (C) 1994, 1995, 1996 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.
+install-@DIR@PROGRAMS: $(@DIR@_PROGRAMS)
+       $(NORMAL_INSTALL)
+       $(mkinstalldirs) $(@DIR@dir)
+## Funny invocation because Makefile variable can be empty, leading to
+## a syntax error in sh.
+       list="$(@DIR@_PROGRAMS)"; for p in $$list; do \
+         if test -f $$p; then \
+           $(LIBTOOL) $(INSTALL_PROGRAM) $$p $(@DIR@dir)/$$p; \
+         else :; fi; \
+       done
+
+uninstall-@DIR@PROGRAMS:
+       list="$(@DIR@_PROGRAMS)"; for p in $$list; do \
+         $(LIBTOOL) rm -f $(@DIR@dir)/$$p; \
+       done
index 9001c3f55466c3718f9312a6810c50df94009aab..21068a39aa088134a31b56b68243901707710a1f 100644 (file)
@@ -1,3 +1,3 @@
-@set UPDATED 19 November 1996
+@set UPDATED 21 November 1996
 @set EDITION 1.1h
 @set VERSION 1.1h
This page took 0.035397 seconds and 5 git commands to generate.