From a0c11b9ff0b54c214eb1848e1873dcd586c96df9 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 3 Jan 1996 21:24:49 +0000 Subject: [PATCH] Copyright clarifications --- ChangeLog | 4 ++++ Makefile.in | 4 ++++ automake.in | 12 +++++++++++- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 285162e8..e19b0b64 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 1abc8048..ea8964e1 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 4c5fadad..aec540fa 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. -- 2.43.5