| # Makefile for jobacct_gather/linux plugin |
| |
| AUTOMAKE_OPTIONS = foreign |
| |
| PLUGIN_FLAGS = -module -avoid-version --export-dynamic |
| |
| AM_CPPFLAGS = -DSLURM_PLUGIN_DEBUG -I$(top_srcdir) |
| |
| pkglib_LTLIBRARIES = jobacct_gather_linux.la |
| |
| # Null job completion logging plugin. |
| jobacct_gather_linux_la_SOURCES = jobacct_gather_linux.c |
| |
| jobacct_gather_linux_la_LDFLAGS = $(PLUGIN_FLAGS) |
| |
| jobacct_gather_linux_la_LIBADD = ../common/libjobacct_gather_common.la |
| |
| force: |
| $(jobacct_gather_linux_la_LIBADD) : force |
| @cd `dirname $@` && $(MAKE) `basename $@` |