]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Copyright clarifications
authorTom Tromey <tromey@redhat.com>
Wed, 3 Jan 1996 21:24:52 +0000 (21:24 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 3 Jan 1996 21:24:52 +0000 (21:24 +0000)
ChangeLog
Makefile.in
automake.in

index 285162e8591c362ff786bf7f238871a5936be898..e19b0b6464f46e4e3ae3b304490c020b6f7ae755 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 Wed Jan  3 00:05:40 1996  Tom Tromey  <tromey@cambric.colorado.edu>
 
+       * automake.in (initialize_global_constants): New variable
+       gen_copyright.
+       (read_am_file): Put a copyright in each Makefile.in.
+
        * dist-vars.am (DISTFILES): Put DIST_COMMON first.
 
        * automake.in (am_install_var): Put space before "=".
index 1abc80484d65b2eb94db28a6386972ee9e9b1462..ea8964e1234f261766aace5f70e617354f6e8ced 100644 (file)
@@ -1,5 +1,9 @@
 # Makefile.in generated automatically by automake 0.28 from Makefile.am
 
+# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+
 
 SHELL = /bin/sh
 
index 4c5fadad00fdb5e37b42f4e7ade562cc183fd465..aec540fa621d119c415ffa769dbd90e22e9344ae 100755 (executable)
@@ -6,7 +6,7 @@ eval 'exec /usr/local/bin/perl -S $0 ${1+"$@"}'
     if $running_under_some_shell;
 
 # automake - create Makefile.in from Makefile.am
-# Copyright (C) 1994 Free Software Foundation, Inc.
+# 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
@@ -1143,6 +1143,9 @@ sub read_am_file
     $output_vars .= ("# Makefile.in generated automatically by automake "
                     . $VERSION . " from Makefile.am\n");
 
+    # Generate copyright for generated Makefile.in.
+    $output_vars .= $gen_copyright;
+
     local ($saw_bk) = 0;
     local ($was_rule) = 0;
     local ($spacing) = '';
@@ -1328,6 +1331,13 @@ sub initialize_global_constants
   --output-dir=DIR      put generated Makefile.in's into DIR
   --strictness=LEVEL    set strictness level.  LEVEL is normal, gnu, gnits
   --version             print version number, then exit\n";
+
+    # Copyright on generated Makefile.ins.
+    $gen_copyright = "\
+# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+"
 }
 
 # (Re)-Initialize per-Makefile.am variables.