-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
56 lines (40 loc) · 1.03 KB
/
Makefile.am
File metadata and controls
56 lines (40 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
ACLOCAL_AMFLAGS = -I m4
BASE_CPPFLAGS = \
-I$(top_srcdir)/include -I$(builddir)/include \
-Wall -Werror -Wextra -Wpedantic \
$(PTHREAD_CFLAGS)
BASE_LDFLAGS = \
$(PTHREAD_CFLAGS)
BASE_LIBS = \
$(PTHREAD_LIBS)
pkginclude_HEADERS = \
include/remoteexecutor/executor.hpp \
include/remoteexecutor/work.hpp
lib_LTLIBRARIES = \
libre.la
libre_la_SOURCES = \
include/private/workqueue.hpp \
src/lib/executor.cpp \
src/lib/workqueue.cpp
libre_la_CPPFLAGS = \
$(BASE_CPPFLAGS)
libre_la_LDFLAGS = \
$(BASE_LDFLAGS) \
-version-info @REMOTEEXECUTOR_LT_VERSION@
libre_la_LIBADD = \
$(BASE_LIBS)
bin_PROGRAMS = \
simpleexample
simpleexample_SOURCES = \
src/programs/simpleexample.cpp
simpleexample_CPPFLAGS = \
$(BASE_CPPFLAGS)
simpleexample_LDADD = \
libre.la
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libremoteexecutor.pc
nodist_pkgconfig_DATA = libremoteexecutor.pc
EXTRA_DIST = \
$(top_srcdir)/libremoteexecutor.pc.in
clean-local:
rm -f libremoteexecutor.pc