diff options
author | Bogler <uidu5846@wel1vvgg-virt.we.de.conti.de> | 2012-12-07 15:28:10 +0100 |
---|---|---|
committer | Bogler <uidu5846@wel1vvgg-virt.we.de.conti.de> | 2012-12-07 15:28:10 +0100 |
commit | 4e48024924d9441cc4431b26bf6e1c9d1f3697e8 (patch) | |
tree | dc66ea2f7ce42501c9e279f684240cf2810c0260 /NodeStateManager/Makefile.am | |
download | node-state-manager-4e48024924d9441cc4431b26bf6e1c9d1f3697e8.tar.gz |
Initial commit of Node State Manager
Diffstat (limited to 'NodeStateManager/Makefile.am')
-rw-r--r-- | NodeStateManager/Makefile.am | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/NodeStateManager/Makefile.am b/NodeStateManager/Makefile.am new file mode 100644 index 0000000..6de96e5 --- /dev/null +++ b/NodeStateManager/Makefile.am @@ -0,0 +1,55 @@ +####################################################################################################################### +# +# Copyright (C) 2012 Continental Automotive Systems, Inc. +# +# Author: Jean-Pierre.Bogler@continental-corporation.com +# +# Makefile template for the NodeStateManager +# +# Process this file with automake to produce a Makefile.in. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +####################################################################################################################### + +bin_PROGRAMS = NodeStateManager + +NodeStateManager_SOURCES = NodeStateManager.c + +NodeStateManager_CFLAGS = \ + -I$(top_srcdir)/NodeStateMachineStub \ + -I$(top_srcdir)/NodeStateAccessStub \ + $(DLT_CFLAGS) \ + $(GIO_CFLAGS) \ + $(GIO_UNIX_CFLAGS) \ + $(GLIB_CFLAGS) \ + $(GOBJECT_CFLAGS) \ + $(PLATFORM_CFLAGS) + +NodeStateManager_LDFLAGS = \ + $(PLATFORM_LDFLAGS) + +NodeStateManager_LDADD = \ + -L$(top_srcdir)/NodeStateAccessStub -lNodeStateAccess \ + -L$(top_srcdir)/NodeStateMachineStub -lNodeStateMachine \ + $(DLT_LIBS) \ + $(GIO_LIBS) \ + $(GIO_UNIX_LIBS) \ + $(GLIB_LIBS) \ + $(GOBJECT_LIBS) + +include_HEADERS = NodeStateManager.h NodeStateTypes.h + +systemdsystemunit_DATA = config/nodestatemanager-daemon.service + + +dbussystemunit_DATA = config/org.genivi.NodeStateManager.LifeCycleControl.service + + +dbuspolicy_DATA = config/org.genivi.NodeStateManager.conf + +EXTRA_DIST = $(systemdsystemunit_DATA) \ + $(dbussystemunit_DATA) \ + $(dbuspolicy_DATA) |