blob: 2a8805bb2da4e6033ab64e4061c37b5f34370be0 (
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
|
#!gmake
#
# Copyright (c) 2012 Red Hat.
# Copyright (c) 2010 Aconex. All Rights Reserved.
#
TOPDIR = ../..
include $(TOPDIR)/src/include/builddefs
TESTDIR = $(PCP_VAR_DIR)/testsuite/pmdas
SUBDIRS = broken bigun dynamic slow slow_python
LSRCFILES = GNUmakefile.install
default default_pcp: $(SUBDIRS)
$(SUBDIRS_MAKERULE)
setup: $(SUBDIRS)
$(SUBDIRS_MAKERULE)
install install_pcp: $(SUBDIRS)
$(INSTALL) -m 755 -d $(TESTDIR)
$(INSTALL) -m 644 GNUmakefile.install $(TESTDIR)/GNUmakefile
$(SUBDIRS_MAKERULE)
include $(BUILDRULES)
|