18 lines
258 B
Makefile
18 lines
258 B
Makefile
includedir = @includedir@/threads
|
|
|
|
if HAVE_THREADS
|
|
lib_LIBRARIES = libsgthreads.a
|
|
|
|
include_HEADERS = \
|
|
SGGuard.hxx \
|
|
SGQueue.hxx \
|
|
SGThread.hxx
|
|
|
|
libsgthreads_a_SOURCES = \
|
|
SGThread.cxx
|
|
|
|
INCLUDES = -I$(top_srcdir)
|
|
else
|
|
include_HEADERS = SGQueue.hxx
|
|
endif
|