diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2017-03-22 03:52:53 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2017-03-22 03:52:53 -0700 |
commit | f27f1bf33a4a062554711c9badd3768e0774840a (patch) | |
tree | 278b09678ff142749d13027fcd09fc508311e2e1 | |
parent | Remove Changelog in prep for gentoolkit merge (diff) | |
download | gentoolkit-f27f1bf33a4a062554711c9badd3768e0774840a.tar.gz gentoolkit-f27f1bf33a4a062554711c9badd3768e0774840a.tar.bz2 gentoolkit-f27f1bf33a4a062554711c9badd3768e0774840a.zip |
Remove Makefile* in prep for gentoolkit merge
-rw-r--r-- | Makefile | 58 | ||||
-rw-r--r-- | Makefile.skel | 18 |
2 files changed, 0 insertions, 76 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 7954425..0000000 --- a/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -include makedefs.mak - -TOOLS=ebump echangelog ekeyword eviewcvs imlate - -all: - @echo "YARMOUTH (vb.) To shout at foreigners in the belief that the louder you speak, the better they'll understand you." - @echo "PYVERSION=$(PYVERSION)" - @echo "VERSION=$(VERSION)" - @echo "DOCDIR=$(DOCDIR)" - @echo "BINDIR=$(BINDIR)" - @echo "SBINDIR=$(SBINDIR)" - @echo "MANDIR=$(MANDIR)" - @echo "MAN1DIR=$(MAN1DIR)" - -# use $(TOOLS) if we have more than one test -test: - $(MAKE) -C src/echangelog test - -clean: - rm -rf release/ - @for tool in $(TOOLS); do \ - ( $(MAKE) -C src/$${tool} clean ) \ - done - -dist: - mkdir -p release/gentoolkit-dev-$(VERSION)$(RELEASE_TAG) - @for tool in $(TOOLS); do \ - ( $(MAKE) -C src/$${tool} DISTDIR=release/$(RELEASE) dist ) \ - done - - cp Makefile AUTHORS README README.Developer TODO COPYING NEWS ChangeLog release/$(RELEASE)/ - - @sed -e "s/^VERSION ?= .*/VERSION ?= $(VERSION)/" \ - -e "s/^RELEASE_TAG ?= .*/RELEASE_TAG ?= $(RELEASE_TAG)/" \ - makedefs.mak > release/$(RELEASE)/makedefs.mak - - ( cd release ; tar zcf $(RELEASE).tar.gz $(RELEASE)/ ) - @echo - @echo "Now test and then copy the release tarball to the distfiles dir on dev.gentoo.org" - @echo "scp release/$(RELEASE).tar.gz dev.gentoo.org:/space/distfiles-local/" - @echo "And create a new git tag: git tag $(RELEASE); git push origin $(RELEASE)" - -install: install-gentoolkit-dev - -install-gentoolkit-dev: - install -d $(DOCDIR) - install -d $(BINDIR) - install -d $(MAN1DIR) - - install -m 0644 AUTHORS ChangeLog COPYING NEWS README README.Developer TODO $(DOCDIR)/ - - @for tool in $(TOOLS); do \ - ( $(MAKE) -C src/$${tool} DESTDIR=$(DESTDIR) install ) \ - done diff --git a/Makefile.skel b/Makefile.skel deleted file mode 100644 index f544190..0000000 --- a/Makefile.skel +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -include ../../makedefs.mak - -.PHONY: all - -all: - -dist: - mkdir -p ../../$(DISTDIR)/src/<TOOL>/ - cp Makefile <TOOL> <TOOL>.1 ../../$(DISTDIR)/src/<TOOL>/ - -install: all - install -m 0755 <TOOL> $(BINDIR)/ - install -m 0644 <TOOL>.1 $(MAN1DIR)/ - |