summaryrefslogtreecommitdiff
path: root/trunk/Makefile
diff options
context:
space:
mode:
authorkarltk <karltk@gentoo.org>2004-01-07 12:45:47 +0000
committerkarltk <karltk@gentoo.org>2004-01-07 12:45:47 +0000
commitd7bc579a0e0fac22c074a345065e1193f61740f9 (patch)
treef1198daf3ba1df73bb245073c0b0a2e9b58e1595 /trunk/Makefile
parentae60b4b979ee95fc7e7899f12b200b490d05cd4d (diff)
downloadgentoolkit-d7bc579a0e0fac22c074a345065e1193f61740f9.tar.gz
Fixes to build system
svn path=/; revision=48
Diffstat (limited to 'trunk/Makefile')
-rw-r--r--trunk/Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/trunk/Makefile b/trunk/Makefile
index 17aaded..8e9160c 100644
--- a/trunk/Makefile
+++ b/trunk/Makefile
@@ -8,6 +8,7 @@ include makedefs.mak
all:
+ echo "YARMOUTH (vb.) To shout at foreigners in the belief that the louder you speak, the better they'll understand you."
echo $(PYVERSION)
echo $(VERSION)
echo $(docdir)
@@ -23,9 +24,13 @@ dist-gentoolkit-dev:
dist-gentoolkit:
mkdir -p dist/gentoolkit-$(VERSION)
- for x in gentool etcat qpkg revdep-rebuild old-scripts ; do \
+ for x in gentool etcat euse qpkg revdep-rebuild old-scripts ; do \
( cd src/$$x ; make distdir=dist/gentoolkit-$(VERSION) dist ) \
done
+ cp {Makefile,AUTHORS,README,TODO,COPYING,NEWS,ChangeLog} dist/gentoolkit-$(VERSION)/
+ cat makedefs.mak | sed "s/^VERSION=.*/VERSION=$(VERSION)/" > dist/gentoolkit-$(VERSION)/makedefs.mak
+ ( cd dist ; tar zcf gentoolkit-$(VERSION).tar.gz gentoolkit-$(VERSION)/ )
+
install:
echo "Err0r: Must use either install-gentoolkit or install-gentoolkit-dev"
@@ -39,8 +44,8 @@ install-gentoolkit:
install -m 0644 {AUTHORS,ChangeLog,COPYING,NEWS,README,TODO} $(docdir)/
- for x in gentool etcat qpkg euse etc-update revdep-rebuild old-scripts ; do
- ( cd src/$(x) ; make DESTDIR=$(DESTDIR) install )
+ for x in gentool etcat euse qpkg revdep-rebuild old-scripts ; do \
+ ( cd src/$$x ; make DESTDIR=$(DESTDIR) install ) \
done
install-gentoolkit-dev: