summaryrefslogtreecommitdiff
path: root/src/pmdas/pmcd/src/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/pmdas/pmcd/src/GNUmakefile')
-rw-r--r--src/pmdas/pmcd/src/GNUmakefile68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/pmdas/pmcd/src/GNUmakefile b/src/pmdas/pmcd/src/GNUmakefile
new file mode 100644
index 0000000..ff5b4ff
--- /dev/null
+++ b/src/pmdas/pmcd/src/GNUmakefile
@@ -0,0 +1,68 @@
+#
+# 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
+
+LIBTARGET = pmda_pmcd.$(DSOSUFFIX)
+PMDAINIT = pmcd_init
+
+CFILES = pmcd.c
+LSRCFILES = objstyle
+VERSION_SCRIPT = exports
+LDIRT = $(VERSION_SCRIPT)
+
+# Add to CFLAGS to find files in pmcd/src...
+LCFLAGS = -I$(TOPDIR)/src
+LCFLAGS += -I$(TOPDIR)/src/pmie/src
+
+ifneq (, $(filter linux kfreebsd gnu, $(TARGET_OS)))
+ABI = $(shell ./objstyle)
+LCFLAGS += -DSIM_ABI=\""$(ABI)"\"
+endif
+ifeq "$(TARGET_OS)" "darwin"
+ABI = $(shell ./objstyle)
+LCFLAGS += -DSIM_ABI=\"$(ABI)\"
+endif
+ifdef PACKAGE_BUILD
+BUILD = $(PACKAGE_BUILD)
+else
+BUILD = unknown
+endif
+
+LCFLAGS += -DBUILD=\"$(BUILD)\"
+LCFLAGS += $(INVISIBILITY)
+
+LLDLIBS = $(PCP_PMDALIB)
+ifeq "$(TARGET_OS)" "mingw"
+LLDLIBS += -lpcp_pmcd
+PCPLIB_LDFLAGS += -L$(TOPDIR)/src/libpcp_pmcd/src
+endif
+
+default: $(LIBTARGET)
+
+install: default
+ $(INSTALL) -m 755 -d $(PCP_PMDAS_DIR)/pmcd
+ $(INSTALL) -m 755 $(LIBTARGET) $(PCP_PMDAS_DIR)/pmcd/$(LIBTARGET)
+
+include $(BUILDRULES)
+
+default_pcp : default
+
+install_pcp : install
+
+$(LIBTARGET): $(VERSION_SCRIPT)
+
+$(VERSION_SCRIPT):
+ $(VERSION_SCRIPT_MAKERULE)