File: Makefile.am

package info (click to toggle)
openhpi 3.6.1-2.2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 25,544 kB
  • ctags: 25,275
  • sloc: ansic: 202,885; cpp: 63,639; java: 16,472; cs: 15,161; python: 11,884; makefile: 4,872; perl: 1,529; sh: 371; xml: 36; asm: 13
file content (41 lines) | stat: -rw-r--r-- 1,218 bytes parent folder | download | duplicates (4)
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
#      -*- linux-c++ -*-
#
# (C) Copyright Pigeon Point Systems. 2010
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  This
# file and program are licensed under a BSD style license.  See
# the Copying file included with the OpenHPI distribution for
# full licensing terms.
#
# Author(s):
#        Anton Pak <anton.pak@pigeonpoint.com>
#

MAINTAINERCLEANFILES = Makefile.in

AM_CPPFLAGS = -DG_LOG_DOMAIN=\"slave\"

AM_CPPFLAGS += @OPENHPI_INCLUDES@

EXTRA_DIST = Makefile.mingw32 version.rc

pkglib_LTLIBRARIES = libslave.la

libslave_la_SOURCES = baselib.cpp \
                      baselib.h \
                      handler.cpp \
                      handler.h \
                      lock.h \
                      resourcemap.cpp \
                      resourcemap.h \
                      slave.cpp \
                      slave.h \
                      util.cpp \
                      util.h

libslave_la_LDFLAGS = -module -version-info @HPI_LIB_VERSION@
libslave_la_LIBADD  = @GMODULE_ONLY_LIBS@ -lm \
                      $(top_builddir)/utils/libopenhpiutils.la