diff options
author | Jean-Pierre Bogler <jean-pierre.bogler@continental-corporation.com> | 2015-06-11 15:51:55 +0200 |
---|---|---|
committer | Jean-Pierre Bogler <jean-pierre.bogler@continental-corporation.com> | 2015-06-11 15:53:15 +0200 |
commit | b8bace22d04fdd899cc398659b47aaa9aed58102 (patch) | |
tree | d7abd800d0a8800e8f0d94fe0cd343460e42a067 /NodeStateMachineStub | |
parent | dd4a86b9459537d2e85489b36abf80f34d12f098 (diff) | |
download | node-state-manager-b8bace22d04fdd899cc398659b47aaa9aed58102.tar.gz |
Add configure switch to set which NSMC to compile
This patch was based on a contribution from Angar Wehrle
and allows to select which NodeStateMachine (NSMC) should
be build during configuration.
Change-Id: I70db0ba7a037daf125954818932b2446da588122
Signed-off-by: Jean-Pierre Bogler <jean-pierre.bogler@continental-corporation.com>
Diffstat (limited to 'NodeStateMachineStub')
-rw-r--r-- | NodeStateMachineStub/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/NodeStateMachineStub/Makefile.am b/NodeStateMachineStub/Makefile.am index a8386a0..0905bd5 100644 --- a/NodeStateMachineStub/Makefile.am +++ b/NodeStateMachineStub/Makefile.am @@ -14,12 +14,12 @@ # ####################################################################################################################### -lib_LTLIBRARIES = libNodeStateMachine.la +lib_LTLIBRARIES = libNodeStateMachineStub.la -libNodeStateMachine_la_CFLAGS = \ +libNodeStateMachineStub_la_CFLAGS = \ -I$(top_srcdir)/NodeStateManager \ $(PLATFORM_CFLAGS) -libNodeStateMachine_la_SOURCES = NodeStateMachine.c NodeStateMachine.h +libNodeStateMachineStub_la_SOURCES = NodeStateMachine.c NodeStateMachine.h -libNodeStateMachine_la_LDFLAGS = -avoid-version +libNodeStateMachineStub_la_LDFLAGS = -avoid-version |