1# 2# Copyright (c) 2012 Los Alamos National Security, LLC. All rights reserved. 3# Copyright (c) 2017 IBM Corporation. All rights reserved. 4# $COPYRIGHT$ 5# 6# Additional copyrights may follow 7# 8# $HEADER$ 9# 10 11sources = \ 12 dfs_app.h \ 13 dfs_app_component.c \ 14 dfs_app.c 15 16# Make the output library in this directory, and name it either 17# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la 18# (for static builds). 19 20if MCA_BUILD_orte_dfs_app_DSO 21component_noinst = 22component_install = mca_dfs_app.la 23else 24component_noinst = libmca_dfs_app.la 25component_install = 26endif 27 28mcacomponentdir = $(ortelibdir) 29mcacomponent_LTLIBRARIES = $(component_install) 30mca_dfs_app_la_SOURCES = $(sources) 31mca_dfs_app_la_LDFLAGS = -module -avoid-version 32mca_dfs_app_la_LIBADD = $(top_builddir)/orte/lib@ORTE_LIB_PREFIX@open-rte.la 33 34noinst_LTLIBRARIES = $(component_noinst) 35libmca_dfs_app_la_SOURCES =$(sources) 36libmca_dfs_app_la_LDFLAGS = -module -avoid-version 37