diff options
Diffstat (limited to 'src/pmdas/mmv/src/GNUmakefile')
-rw-r--r-- | src/pmdas/mmv/src/GNUmakefile | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/pmdas/mmv/src/GNUmakefile b/src/pmdas/mmv/src/GNUmakefile new file mode 100644 index 0000000..421c38b --- /dev/null +++ b/src/pmdas/mmv/src/GNUmakefile @@ -0,0 +1,59 @@ +# +# Copyright (c) 2013 Red Hat. +# Copyright (c) 2009-2010 Aconex. All Rights Reserved. +# Copyright (c) 2000-2001,2009 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 = mmv +DOMAIN = MMV +CMDTARGET = pmda$(IAM)$(EXECSUFFIX) +LIBTARGET = pmda_$(IAM).$(DSOSUFFIX) +PMDAINIT = $(IAM)_init +TARGETS = $(CMDTARGET) $(LIBTARGET) + +CFILES = mmv.c +VERSION_SCRIPT = exports +LSRCFILES = Install Remove root_mmv +LLDLIBS = $(PCP_PMDALIB) +LCFLAGS = $(INVISIBILITY) +LDIRT = domain.h *.log pmns $(VERSION_SCRIPT) + +PMDADIR = $(PCP_PMDAS_DIR)/$(IAM) + +default_pcp default: $(TARGETS) pmns + +include $(BUILDRULES) + +install_pcp install: default + $(INSTALL) -m 755 -d $(PMDADIR) + $(INSTALL) -m 644 domain.h $(PMDADIR)/domain.h + $(INSTALL) -m 755 $(TARGETS) Install Remove $(PMDADIR) + $(INSTALL) -m 644 pmns $(PMDADIR)/root_mmv + $(INSTALL) -m 644 root_mmv $(PCP_VAR_DIR)/pmns/root_mmv + +$(CMDTARGET): $(OBJECTS) + +$(IAM).o : domain.h +$(LIBTARGET) : $(VERSION_SCRIPT) + +$(VERSION_SCRIPT): + $(VERSION_SCRIPT_MAKERULE) + +domain.h: ../../../pmns/stdpmid + $(DOMAIN_MAKERULE) + +pmns : + $(LN_S) -f root_mmv pmns |