summaryrefslogtreecommitdiff
path: root/release/Makefile
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-07-08 20:21:02 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-07-08 20:21:02 +0000
commit90f0dc86d50d5ada3c90be9fcd0abe9b9d4e8b2d (patch)
tree5137d8cd4538f0006e70ecf37a3efd6cc0f40ebf /release/Makefile
parentc05364b65344a0cf83657b8abd3ac65b0e62f194 (diff)
Initial revision
Diffstat (limited to 'release/Makefile')
-rw-r--r--release/Makefile45
1 files changed, 45 insertions, 0 deletions
diff --git a/release/Makefile b/release/Makefile
new file mode 100644
index 00000000..bb11e957
--- /dev/null
+++ b/release/Makefile
@@ -0,0 +1,45 @@
+# Makefile for Hurd release tools
+# Copyright (C) 1996 Free Software Foundation, Inc.
+# Written by Michael I. Bushnell, p/BSG.
+#
+# This file is part of the GNU Hurd.
+#
+# The GNU Hurd 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.
+#
+# The GNU Hurd 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, USA.
+
+dir := release
+makemode := misc
+
+# Files that go into the root of binary distributions
+dist-files = INSTALL-binary dist-README SETUP
+
+# Tools for making images
+tool-files = tool-Makefile install-stripped
+
+DIST_FILES = README $(dist-files) install-stripped image-Makefile
+
+include ../Makeconf
+
+ifneq ($(dist-root),)
+install-dist:
+ cp INSTALL-binary $(dist-root)/
+ cp dist-README $(dist-root)/README
+ cp SETUP $(dist-root)/SETUP
+endif
+
+ifneq ($(tool-root),)
+install-tools:
+ cp install-stripped $(tool-root)/
+ cp tool-Makefile $(tool-root)/Makefile
+endif