Skip to content
Snippets Groups Projects
Commit 15156ec3 authored by Mark Grondona's avatar Mark Grondona
Browse files

o link against built libslurm instead of installed

 o rename modules to not have "lib" prefix and install them into pkglibdir
parent cae76a64
No related branches found
No related tags found
No related merge requests found
...@@ -3,20 +3,20 @@ ...@@ -3,20 +3,20 @@
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = foreign
PLUGIN_FLAGS = -module -avoid-version PLUGIN_FLAGS = -module -avoid-version -no-undefined
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src/common
# Add your plugin to this line, following the naming conventions. # Add your plugin to this line, following the naming conventions.
lib_LTLIBRARIES = libauth_none.la libauth_authd.la pkglib_LTLIBRARIES = auth_none.la auth_authd.la
# Null authentication plugin. # Null authentication plugin.
libauth_none_la_SOURCES = auth_none.c auth_none_la_SOURCES = auth_none.c
libauth_none_la_LDFLAGS = $(PLUGIN_FLAGS) auth_none_la_LDFLAGS = $(PLUGIN_FLAGS)
libauth_none_la_LIBADD = -lslurm auth_none_la_LIBADD = $(top_builddir)/src/api/libslurm.la
# Authd authentication plugin -- requires libauth # Authd authentication plugin -- requires libauth
libauth_authd_la_SOURCES = auth_authd.c auth_authd_la_SOURCES = auth_authd.c
libauth_authd_la_LDFLAGS = $(PLUGIN_FLAGS) auth_authd_la_LDFLAGS = $(PLUGIN_FLAGS)
libauth_authd_la_LIBADD = -lslurm -lauth auth_authd_la_LIBADD = $(top_builddir)/src/api/libslurm.la -lauth
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment