blob: 4825683375000a840c39f86fb3357fe5180a110e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 2004 Karl Trygve Kalleberg <karltk@gentoo.org>
# Copyright 2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
#
# $Header$
include ../../makedefs.mak
.PHONY: all test
all:
test:
cd test; sh test.sh
dist:
mkdir -p ../../$(distdir)/src/echangelog/test/templates
cp Makefile AUTHORS README TODO ChangeLog echangelog echangelog.1 ../../$(distdir)/src/echangelog/
cp test/TEST.pm test/test.sh ../../$(distdir)/src/echangelog/test/
cp test/templates/test.patch test/templates/vcstest-0.0.1.ebuild ../../$(distdir)/src/echangelog/test/templates
install: all
install -m 0755 echangelog $(bindir)/
install -d $(docdir)/echangelog
install -m 0644 AUTHORS README $(docdir)/echangelog/
install -m 0644 echangelog.1 $(mandir)/
|