ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/Makefile
(Generate patch)

Comparing BasiliskII/Makefile (file contents):
Revision 1.6 by cebix, 1999-10-04T00:39:43Z vs.
Revision 1.8 by cvs, 1999-10-04T23:20:01Z

# Line 1 | Line 1
1   # Makefile for creating Basilisk II distributions
2   # Written in 1999 by Christian Bauer <Christian.Bauer@uni-mainz.de>
3  
4 < VERSION = $(shell sed <BasiliskII.spec -n '/^Version: */s///p')
5 < RELEASE = $(shell sed <BasiliskII.spec -n '/^Release: */s///p')
6 < VERNAME = BasiliskII-$(VERSION)
7 <
8 < SRCARCHIVE = $(shell date +BasiliskII_src_%d%m%Y.tar.gz)
9 < SRCRPM = $(VERNAME)-$(RELEASE).src.rpm
10 < I386RPM = $(VERNAME)-$(RELEASE).i386.rpm
11 < AMIGAARCHIVE = $(VERNAME)-$(RELEASE).amiga.lha
12 < BEOSPPCARCHIVE = $(VERNAME)-$(RELEASE).beosppc.zip
13 < BEOSX86ARCHIVE = $(VERNAME)-$(RELEASE).beosx86.zip
14 <
15 < TMPDIR = /tmp/build
16 < RPMDIR = /usr/src/redhat
17 < DOCS = $(shell sed <BasiliskII.spec -n '/^\%doc */s///p')
18 < SRCS = src
4 > VERSION := $(shell sed <BasiliskII.spec -n '/^Version: */s///p')
5 > RELEASE := $(shell sed <BasiliskII.spec -n '/^Release: */s///p')
6 > VERNAME := BasiliskII-$(VERSION)
7 >
8 > SRCARCHIVE := $(shell date +BasiliskII_src_%d%m%Y.tar.gz)
9 > SRCRPM := $(VERNAME)-$(RELEASE).src.rpm
10 > BINRPM := $(VERNAME)-$(RELEASE).i386.rpm
11 > AMIGAARCHIVE := $(VERNAME)-$(RELEASE).amiga.lha
12 > BEOSPPCARCHIVE := $(VERNAME)-$(RELEASE).beosppc.zip
13 > BEOSX86ARCHIVE := $(VERNAME)-$(RELEASE).beosx86.zip
14 >
15 > TMPDIR := $(shell date +/tmp/build%m%s)
16 > RPMDIR := /usr/src/redhat
17 > DOCS := $(shell sed <BasiliskII.spec -n '/^\%doc */s///p')
18 > SRCS := src
19  
20   default:
21          @echo "This top-level Makefile is for creating Basilisk II distributions."
# Line 27 | Line 27 | default:
27   help:
28          @echo "The following targets are available:"
29          @echo "  tarball  source tarball ($(SRCARCHIVE))"
30 <        @echo "  rpm      source and binary RPMs ($(SRCRPM) and $(I386RPM))"
30 >        @echo "  rpm      source and binary RPMs ($(SRCRPM) and $(BINRPM))"
31          @echo "  amiga    AmigaOS binary archive ($(AMIGAARCHIVE))"
32          @echo "  beosppc  BeOS/ppc binary archive ($(BEOSPPCARCHIVE))"
33          @echo "  beosx86  BeOS/x86 binary archive ($(BEOSX86ARCHIVE))"
34  
35   clean:
36          -rm -f $(SRCARCHIVE)
37 <        -rm -f $(SRCRPM) $(I386RPM)
37 >        -rm -f $(SRCRPM) $(BINRPM)
38          -rm -f $(AMIGAARCHIVE) $(BEOSPPCARCHIVE) $(BEOSX86ARCHIVE)
39  
40   #
# Line 55 | Line 55 | $(SRCARCHIVE): $(SRCS) $(DOCS)
55   #
56   # RPMs (source and i386 binary)
57   #
58 < rpm: $(SRCRPM) $(I386RPM)
58 > rpm: $(SRCRPM) $(BINRPM)
59  
60   $(RPMDIR)/SOURCES/$(SRCARCHIVE): $(SRCARCHIVE)
61          cp $(SRCARCHIVE) $(RPMDIR)/SOURCES
62  
63 < $(RPMDIR)/SRPMS/$(SRCRPM) $(RPMDIR)/RPMS/i386/$(I386RPM): $(RPMDIR)/SOURCES/$(SRCARCHIVE) BasiliskII.spec
63 > $(RPMDIR)/SRPMS/$(SRCRPM) $(RPMDIR)/RPMS/i386/$(BINRPM): $(RPMDIR)/SOURCES/$(SRCARCHIVE) BasiliskII.spec
64          rpm -ba BasiliskII.spec
65  
66   $(SRCRPM): $(RPMDIR)/SRPMS/$(SRCRPM)
67          cp $(RPMDIR)/SRPMS/$(SRCRPM) .
68  
69 < $(I386RPM): $(RPMDIR)/RPMS/i386/$(I386RPM)
70 <        cp $(RPMDIR)/RPMS/i386/$(I386RPM) .
69 > $(BINRPM): $(RPMDIR)/RPMS/i386/$(BINRPM)
70 >        cp $(RPMDIR)/RPMS/i386/$(BINRPM) .
71  
72   #
73   # Binary archive for AmigaOS

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines