diff options
Diffstat (limited to 'src/pmdas/solaris/GNUmakefile')
-rw-r--r-- | src/pmdas/solaris/GNUmakefile | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/pmdas/solaris/GNUmakefile b/src/pmdas/solaris/GNUmakefile new file mode 100644 index 0000000..e5f858c --- /dev/null +++ b/src/pmdas/solaris/GNUmakefile @@ -0,0 +1,82 @@ +# +# Copyright (c) 2013 Red Hat. +# Copyright (c) 2000,2003,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 + +IAM = solaris +DOMAIN = SOLARIS +PMDADIR = $(PCP_PMDAS_DIR)/$(IAM) +PMDAINIT = solaris_init +CMDTARGET = pmdasolaris +LIBTARGET = pmda_solaris.so +CONF_LINE = "solaris 75 dso $(PMDAINIT) $(PMDADIR)/$(LIBTARGET)" + +CFILES = solaris.c data.c sysinfo.c disk.c zpool.c zfs.c \ + zpool_perdisk.c netmib2.c netlink.c kvm.c arcstats.c vnops.c + +BARE_NS = disk kernel mem network hinv zpool zfs zpool_perdisk +PMNS = $(BARE_NS:%=pmns.%) + +LSRCFILES = $(PMNS) help root common.h clusters.h netmib2.h +HELPTARGETS = help.dir help.pag +VERSION_SCRIPT = exports + +LDIRT = domain.h *.log $(HELPTARGETS) root_solaris + +LLDLIBS = $(PCP_PMDALIB) -lkstat -lzfs -lnvpair -lkvm -ldevinfo + +default: build-me + +include $(BUILDRULES) + +ifeq "$(TARGET_OS)" "solaris" +build-me: root_solaris domain.h $(LIBTARGET) $(CMDTARGET) $(HELPTARGETS) + @if [ `grep -c $(CONF_LINE) ../pmcd.conf` -eq 0 ]; then \ + echo $(CONF_LINE) >> ../pmcd.conf ; \ + fi + +install: build-me + $(INSTALL) -m 755 -d $(PMDADIR) + $(INSTALL) -m 644 domain.h $(HELPTARGETS) $(PMDADIR) + $(INSTALL) -m 755 $(LIBTARGET) $(CMDTARGET) $(PMDADIR) + $(INSTALL) -m 644 root_solaris $(PCP_VAR_DIR)/pmns/root_solaris +else +build-me: +install: +endif + +default_pcp : default + +install_pcp : install + +$(OBJECTS): common.h + +$(HELPTARGETS): help root_solaris + $(RUN_IN_BUILD_ENV) $(TOPDIR)/src/newhelp/newhelp -n root_solaris -v 2 -o help < help + +root_solaris: ../../pmns/stdpmid $(PMNS) root + rm -f root_solaris + sed -e 's;<stdpmid>;"../../pmns/stdpmid";' <root \ + | $(RUN_IN_BUILD_ENV) $(TOPDIR)/src/pmcpp/pmcpp \ + | sed -e '/^#/d' -e '/^$$/d' >root_solaris + +domain.h: ../../pmns/stdpmid + $(DOMAIN_MAKERULE) + +$(VERSION_SCRIPT): + $(VERSION_SCRIPT_MAKERULE) + +$(LIBTARGET): $(VERSION_SCRIPT) |