blob: 1b95b7c9aafc7bc03ba6a405de006d8d8af94a14 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#
# Copyright (c) 2000,2004 Silicon Graphics, Inc. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
TOPDIR = ../..
include $(TOPDIR)/src/include/builddefs
-include ./GNUlocaldefs
SCRIPTS = $(TOPDIR)/build
LSRCFILES = remove README \
preinstall.head.in preinstall.head preinstall.tail \
postinstall.head.in postinstall.head postinstall.tail
LDIRT = $(wildcard pcp*.tar.gz pcp*.md5sum.src) \
preinstall preinstall.head postinstall postinstall.head
default install install_pcp default_pcp : preinstall postinstall
preinstall: preinstall.head $(SCRIPTS)/cleanconfigs preinstall.tail
rm -f $@
cat preinstall.head $(SCRIPTS)/cleanconfigs preinstall.tail > $@
chmod ugo+x $@
postinstall: postinstall.head $(SCRIPTS)/cleantmpdirs postinstall.tail
rm -f $@
cat postinstall.head $(SCRIPTS)/cleantmpdirs postinstall.tail > $@
chmod ugo+x $@
# Note on sed below
# for f and l lines of manifest, want the last word (target name),
# stripped of leading /
#
.PHONY: pack_pcp
pack_pcp :
@ BINTAR=$(PACKAGE_NAME)-$(PACKAGE_VERSION)-$(PACKAGE_BUILD).tar.gz; \
HERE=`pwd`; cd $${DIST_ROOT:-/}; \
sort -u $$DIST_MANIFEST | sed -n -e '/^[fl]/s/.* \/*//p' \
| $(TAR) -T - -cf - \
| gzip > $$HERE/$$BINTAR; echo Wrote: $$HERE/$$BINTAR
include $(BUILDRULES)
|