summaryrefslogtreecommitdiff
path: root/gnu/gnu2bmake
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/gnu2bmake')
-rw-r--r--gnu/gnu2bmake/gcc-2.6.0.tcl4
-rwxr-xr-xgnu/gnu2bmake/gcc-2.6.1.tcl10
-rw-r--r--gnu/gnu2bmake/gnu2bmake.tcl6
-rw-r--r--gnu/gnu2bmake/libg++-2.6.tcl2
4 files changed, 11 insertions, 11 deletions
diff --git a/gnu/gnu2bmake/gcc-2.6.0.tcl b/gnu/gnu2bmake/gcc-2.6.0.tcl
index 97181aa8990f..5e49b44a1f59 100644
--- a/gnu/gnu2bmake/gcc-2.6.0.tcl
+++ b/gnu/gnu2bmake/gcc-2.6.0.tcl
@@ -7,7 +7,7 @@
# this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
# ----------------------------------------------------------------------------
#
-# $Id$
+# $Id: gcc-2.6.0.tcl,v 1.4 1997/02/22 15:42:28 peter Exp $
#
source gnu2bmake.tcl
@@ -116,7 +116,7 @@ sh "mkdir $ddir/legal"
sh "cp $sdir/gen-*.c $sdir/md $ddir/legal"
set f [open $ddir/README w]
puts $f {
-$Id$
+$Id: gcc-2.6.0.tcl,v 1.4 1997/02/22 15:42:28 peter Exp $
This directory contains gcc in a form that uses "bmake" makefiles.
This is not the place you want to start, if you want to hack gcc.
diff --git a/gnu/gnu2bmake/gcc-2.6.1.tcl b/gnu/gnu2bmake/gcc-2.6.1.tcl
index d2aac484df23..9f2ed62deb53 100755
--- a/gnu/gnu2bmake/gcc-2.6.1.tcl
+++ b/gnu/gnu2bmake/gcc-2.6.1.tcl
@@ -7,7 +7,7 @@
# this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
# ----------------------------------------------------------------------------
#
-# $Id$
+# $Id: gcc-2.6.1.tcl,v 1.4 1997/02/22 15:42:29 peter Exp $
#
# Good for 2.6.1 and 2.6.2
@@ -95,7 +95,7 @@ set target [makefile_macro target $sdir]
sh "rm -rf $ddir"
sh "mkdir $ddir"
set f [open $ddir/Makefile.inc w]
-puts $f "#\n# \$Id$\n#\n"
+puts $f "#\n# \$Id: gcc-2.6.1.tcl,v 1.4 1997/02/22 15:42:29 peter Exp $\n#\n"
puts $f "CFLAGS+=\t-I\${.CURDIR} -I\${.CURDIR}/../include"
puts $f "CFLAGS+=\t-Dbsd4_4"
puts $f "CFLAGS+=\t-DGCC_INCLUDE_DIR=\\\"FOO\\\""
@@ -124,7 +124,7 @@ puts $f ".endif"
close $f
set f [open $ddir/Makefile w]
-puts $f "#\n# \$Id$\n#\n"
+puts $f "#\n# \$Id: gcc-2.6.1.tcl,v 1.4 1997/02/22 15:42:29 peter Exp $\n#\n"
puts $f "PGMDIR=\tcc_int cpp cc1 cc cc1plus c++ f77 libgcc"
puts $f "SUBDIR=\t\$(PGMDIR)"
puts $f "\n.include <bsd.subdir.mk>"
@@ -135,7 +135,7 @@ sh "mkdir $ddir/legal"
sh "cp $sdir/gen-*.c $sdir/md $ddir/legal"
set f [open $ddir/README w]
puts $f {
-$Id$
+$Id: gcc-2.6.1.tcl,v 1.4 1997/02/22 15:42:29 peter Exp $
This directory contains gcc in a form that uses "bmake" makefiles.
This is not the place you want to start, if you want to hack gcc.
@@ -154,7 +154,7 @@ Thankyou.
# do ~/libgcc
sh "mkdir $ddir/libgcc"
set f [open $ddir/libgcc/Makefile w]
-puts $f "#\n# \$Id$\n#\n"
+puts $f "#\n# \$Id: gcc-2.6.1.tcl,v 1.4 1997/02/22 15:42:29 peter Exp $\n#\n"
puts $f "LIB=\tgcc"
puts $f "INSTALL_PIC_ARCHIVE=\tyes"
puts $f "SHLIB_MAJOR=\t261"
diff --git a/gnu/gnu2bmake/gnu2bmake.tcl b/gnu/gnu2bmake/gnu2bmake.tcl
index b2ec65fa6f74..1a9a9c26105c 100644
--- a/gnu/gnu2bmake/gnu2bmake.tcl
+++ b/gnu/gnu2bmake/gnu2bmake.tcl
@@ -7,7 +7,7 @@
# this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
# ----------------------------------------------------------------------------
#
-# $Id$
+# $Id: gnu2bmake.tcl,v 1.5 1997/02/22 15:42:29 peter Exp $
#
#######################################################################
# Generic procedures usable in the process of gnu-to-bmake jobs.
@@ -166,7 +166,7 @@ proc makefile_macro {macro dir {makefile Makefile}} {
proc mk_prog {ddir name list {make ""}} {
sh "mkdir $ddir/$name"
set f [open $ddir/$name/Makefile w]
- puts $f "#\n# \$Id$\n#\n"
+ puts $f "#\n# \$Id: gnu2bmake.tcl,v 1.5 1997/02/22 15:42:29 peter Exp $\n#\n"
puts $f "PROG =\t$name"
puts $f "SRCS =\t[lsort $list]"
foreach i $make {puts $f $i}
@@ -184,7 +184,7 @@ proc mk_prog {ddir name list {make ""}} {
proc mk_lib {ddir name list {make ""}} {
sh "mkdir $ddir/$name"
set f [open $ddir/$name/Makefile w]
- puts $f "#\n# \$Id$\n#\n"
+ puts $f "#\n# \$Id: gnu2bmake.tcl,v 1.5 1997/02/22 15:42:29 peter Exp $\n#\n"
puts $f "SRCS =\t[lsort $list]"
puts $f "LIB =\t$name"
foreach i $make {puts $f $i}
diff --git a/gnu/gnu2bmake/libg++-2.6.tcl b/gnu/gnu2bmake/libg++-2.6.tcl
index b5d21c29bb1a..3c0aefe7ae24 100644
--- a/gnu/gnu2bmake/libg++-2.6.tcl
+++ b/gnu/gnu2bmake/libg++-2.6.tcl
@@ -7,7 +7,7 @@
# this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
# ----------------------------------------------------------------------------
#
-# $Id$
+# $Id: libg++-2.6.tcl,v 1.2 1997/02/22 15:42:30 peter Exp $
#
source gnu2bmake.tcl