diff options
author | Miles Bader <miles@gnu.org> | 1997-06-24 21:11:42 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-06-24 21:11:42 +0000 |
commit | 3bce517ef731dd43401ddd9e613adaae61e4d181 (patch) | |
tree | ac25877f788142512cc63534121b320e595022a6 | |
parent | ab42fe37f00d1e53b4c7bbba66ef70b5c6267b7c (diff) |
(bfloppy.ext2, rfloppy.ext2.gz):
New rules.
(dist-files):
Include mkfsimage.sh, bfloppy.copy, bfloppy-special.copy, rfloppy.copy.
(tool-files):
Variable removed.
(install-tools):
Rule removed.
-rw-r--r-- | release/Makefile | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/release/Makefile b/release/Makefile index 0426bae3..9c9e614a 100644 --- a/release/Makefile +++ b/release/Makefile @@ -22,13 +22,12 @@ dir := release makemode := misc # Files that go into the root of binary distributions -dist-files = INSTALL-binary dist-README SETUP servers.boot \ - menu.lst COPYING.LIB SOURCES.0.2 +dist-files = INSTALL-binary dist-README SETUP servers.boot bfloppy.boot \ + menu.lst COPYING.LIB SOURCES.0.2 \ + bfloppy.copy bfloppy-special.copy rfloppy.copy \ + mkfsimage.sh mksmallso.sh mkemptyso.sh -# Tools for making images -tool-files = tool-Makefile install-stripped mksmallso mkemptyso - -DIST_FILES = README $(dist-files) $(tool-files) +DIST_FILES = README $(dist-files) include ../Makeconf @@ -54,9 +53,9 @@ dist-links: touch $(dist-root)/servers/exec endif -ifneq ($(tool-root),) -install-tools: - cp $(srcdir)/install-stripped $(tool-root)/ - chmod +x $(tool-root)/install-stripped - cp $(srcdir)/tool-Makefile $(tool-root)/Makefile -endif +bfloppy.ext2: mkfsimage bfloppy.copy + ./mkfsimage bfloppy.ext2 \ + / --copy-rules=$(srcdir)/bfloppy.copy \ + $(srcdir) --copy-rules=$(srcdir)/bfloppy-special.copy +rfloppy.ext2.gz: mkfsimage rfloppy.copy + ./mkfsimage --compress rfloppy.ext2.gz / --copy-rules=$(srcdir)/rfloppy.copy |