File: GNUmakefile

package info (click to toggle)
pcp 3.9.10
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 81,836 kB
  • ctags: 26,423
  • sloc: ansic: 178,791; sh: 79,349; cpp: 61,042; xml: 28,842; perl: 12,963; yacc: 5,351; python: 4,578; lex: 1,894; makefile: 1,665; fortran: 60; java: 22; awk: 20
file content (53 lines) | stat: -rw-r--r-- 1,715 bytes parent folder | download
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
52
53
#
# Copyright (c) 2014 Red Hat.
# 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 = cleanconfigs cleantmpdirs
LSRCFILES = $(SCRIPTS) GNUlocaldefs.in
LDIRT = pack_pcp.bin pack_pro.bin pro.src
LDIRDIRT = deb $(TOPDIR)/$(PACKAGE_NAME)-?.?.?

# for clean and clobber
SUBDIRS = tar rpm mac aix sun

default install default_pcp install_pcp : $(SUBDIRS)
	$(SUBDIRS_MAKERULE)

pack :: pack_pcp

pack_pcp :
	@DIST_MANIFEST=`pwd`/$@.bin; DIST_ROOT=/tmp/pcp-build-$$$$; \
	export DIST_MANIFEST DIST_ROOT; \
	rm -f $$DIST_MANIFEST; \
	echo === install === ; \
	$(MAKE) -j 1 -C $(TOPDIR) install_pcp || exit $$?; \
	if test ! -z "$(TAR)"; then \
	    echo === tar === && $(MAKE) -j 1 -C tar $@ || exit $$?; \
	fi; \
	if test ! -z "$(PACKAGE_MAKER)"; then \
	    echo === mac === && $(MAKE) -j 1 -C mac $@ || exit $$?; \
	fi; \
	if test ! -z "$(MKINSTALLP)"; then \
	    echo === aix === && $(MAKE) -j 1 -C aix $@ || exit $$?; \
	fi; \
	if test ! -z "$(PKGMK)" ; then \
	    echo === sun === && $(MAKE) -j 1 -C sun $@ || exit $$?; \
	fi; \
	test -z "$$KEEP_DIST_ROOT" && rm -rf $$DIST_ROOT; echo Done

include $(BUILDRULES)