diff options
Diffstat (limited to 'src/pmdas/cisco/GNUmakefile')
-rw-r--r-- | src/pmdas/cisco/GNUmakefile | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/pmdas/cisco/GNUmakefile b/src/pmdas/cisco/GNUmakefile new file mode 100644 index 0000000..e6c2733 --- /dev/null +++ b/src/pmdas/cisco/GNUmakefile @@ -0,0 +1,70 @@ +# +# 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 + +IAM = cisco +DOMAIN = CISCO +TARGETS = $(IAM)$(EXECSUFFIX) probe$(EXECSUFFIX) +CFILES = cisco.c pmda.c interface.c telnet.c +HFILES = cisco.h +DFILES = README +LSRCFILES=Install Remove root pmns Cisco.pmchart help Samples Tested $(DFILES) \ + cisco.in_util.pmie cisco.out_util.pmie probe.c parse.sh + +LLDLIBS = $(PCP_PMDALIB) $(LIB_FOR_PTHREADS) + +PMDADIR = $(PCP_PMDAS_DIR)/$(IAM) +PMCHART = $(PCP_VAR_DIR)/config/pmchart +PMIEDIR = $(PCP_VAR_DIR)/config/pmieconf/$(IAM) + +LDIRT = domain.h cisco.log *.dir *.pag so_locations a.out probe.o $(TARGETS) + +default: build-me + +include $(BUILDRULES) + +ifneq "$(TARGET_OS)" "mingw" +build-me: $(TARGETS) + +install: build-me + $(INSTALL) -m 755 -d $(PMDADIR) + $(INSTALL) -m 755 $(IAM) $(PMDADIR)/pmda$(IAM) + $(INSTALL) -m 755 parse.sh $(PMDADIR)/parse + $(INSTALL) -m 755 probe Install Remove $(PMDADIR) + $(INSTALL) -m 644 $(DFILES) root help pmns domain.h $(PMDADIR) + $(INSTALL) -m 644 Cisco.pmchart $(PMCHART)/Cisco + $(INSTALL) -m 755 -d $(PMIEDIR) + $(INSTALL) -m 644 cisco.in_util.pmie $(PMIEDIR)/in_util + $(INSTALL) -m 644 cisco.out_util.pmie $(PMIEDIR)/out_util +else +build-me: +install: +endif + +$(IAM)$(EXECSUFFIX): $(OBJECTS) + +probe$(EXECSUFFIX): probe.o interface.o telnet.o + $(CCF) -o $@ $(LDFLAGS) probe.o interface.o telnet.o $(LDLIBS) + +cisco.o: domain.h + +domain.h: ../../pmns/stdpmid + $(DOMAIN_MAKERULE) + +default_pcp: default + +install_pcp: install |