~ubuntu-branches/ubuntu/saucy/slurm-llnl/saucy

« back to all changes in this revision

Viewing changes to src/plugins/jobacct_gather/aix/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2008-05-30 13:11:30 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080530131130-l6ko6aie7xhrlmxe
Tags: 1.3.3-1
* New upstream release
* Removed patches to src/slurmctd/controller.c src/slurmdbd/slurmdbd.c
  doc/man/man1/sacctmgr.1 included to upstream
* Edited watch file to seek for 1.3 releases
* doc/man/man1/salloc.1 doc/man/man1/sbatch.1 doc/man/man5/slurm.conf.5
  patched to improve formatting and avoid manual warnings 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for jobacct_gather/aix plugin
 
2
 
 
3
AUTOMAKE_OPTIONS = foreign
 
4
 
 
5
PLUGIN_FLAGS = -module -avoid-version --export-dynamic 
 
6
 
 
7
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common
 
8
 
 
9
pkglib_LTLIBRARIES = jobacct_gather_aix.la
 
10
 
 
11
# Null job completion logging plugin.
 
12
jobacct_gather_aix_la_SOURCES = jobacct_gather_aix.c \
 
13
        $(top_builddir)/src/slurmd/common/proctrack.c \
 
14
        $(top_builddir)/src/slurmd/common/proctrack.h 
 
15
 
 
16
jobacct_gather_aix_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS)
 
17