blob: a078046306bc553dba9004e5b688943d70651910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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
all:
echo "HATHERSAGE (n.) The tiny snippets of beard which coat the inside of a washbasin after shaving in it."
dist:
mkdir -p ../../${distdir}/src/qpkg
cp Makefile README AUTHORS ChangeLog TODO qpkg qpkg.1 ../../${distdir}/src/qpkg/
install:
install -m 0755 qpkg $(bindir)/
install -d $(docdir)/qpkg
install -m 0644 README AUTHORS ChangeLog $(docdir)/qpkg/
install -m 0644 qpkg.1 $(mandir)/
|