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

o add pack.c,h

 o add qsw.c,h only if --with-elan specified
parent 0ef94b38
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,14 @@ else ...@@ -7,6 +7,14 @@ else
test_modules = test_modules =
endif endif
if WITH_ELAN
elan_sources = qsw.c
elan_headers = qsw.h
else
elan_sources =
elan_headers =
endif
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = foreign
noinst_LIBRARIES = libcommon.a noinst_LIBRARIES = libcommon.a
...@@ -18,7 +26,9 @@ libcommon_a_SOURCES = xmalloc.c \ ...@@ -18,7 +26,9 @@ libcommon_a_SOURCES = xmalloc.c \
list.c \ list.c \
log.c \ log.c \
bits_bytes.c \ bits_bytes.c \
bitstring.c bitstring.c \
pack.c \
$(elan_sources)
noinst_HEADERS = xmalloc.h \ noinst_HEADERS = xmalloc.h \
xassert.h \ xassert.h \
...@@ -28,7 +38,9 @@ noinst_HEADERS = xmalloc.h \ ...@@ -28,7 +38,9 @@ noinst_HEADERS = xmalloc.h \
strlcpy.h \ strlcpy.h \
slurm.h \ slurm.h \
slurmlib.h \ slurmlib.h \
bitstring.h bitstring.h \
pack.h \
$(elan_headers)
# target specific CFLAGS do not work until automake 1.5, use explicit rules # target specific CFLAGS do not work until automake 1.5, use explicit rules
# for now. If we ever move to 1.5, the CFLAGS defs below should work in # for now. If we ever move to 1.5, the CFLAGS defs below should work in
......
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