blob: 9ad57173497f61c80e641797deed14823e38df4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2003 Karl Trygve Kalleberg <karltk@gentoo.org>
# Copyright 2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
#
# $Header$
include ../../makedefs.mak
all:
echo "YADDLETHORPE (vb.) (Of offended pooves.) To exit huffily from a boutique."
dist:
mkdir -p ../../$(distdir)/src/glsa-check/
cp Makefile glsa.py glsa-check glsa-check.1 ../../$(distdir)/src/glsa-check/
install:
install -d $(DESTDIR)/usr/lib/gentoolkit/pym/
install -m 0755 glsa-check $(bindir)/
install -m 0644 glsa.py $(DESTDIR)/usr/lib/gentoolkit/pym/
install -m 0644 glsa-check.1 $(mandir)/
|