From: Tom Tromey Date: Wed, 3 Jan 1996 21:24:52 +0000 (+0000) Subject: Copyright clarifications X-Git-Tag: Release-0-28~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=590aa3dc3ed3fc6893e673d436dfd56f9c5a902f;p=thirdparty%2Fautomake.git Copyright clarifications --- diff --git a/ChangeLog b/ChangeLog index 285162e85..e19b0b646 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ Wed Jan 3 00:05:40 1996 Tom Tromey + * 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 "=". diff --git a/Makefile.in b/Makefile.in index 1abc80484..ea8964e12 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 diff --git a/automake.in b/automake.in index 4c5fadad0..aec540fa6 100755 --- a/automake.in +++ b/automake.in @@ -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.