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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
# -*- 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=\"test_agent\" -D__STDC_FORMAT_MACROS
AM_CPPFLAGS += @OPENHPI_INCLUDES@
EXTRA_DIST = Makefile.mingw32 version.rc
pkglib_LTLIBRARIES = libtest_agent.la
libtest_agent_la_SOURCES = abi.cpp \
abi.h \
announcement.cpp \
announcement.h \
annunciator.cpp \
annunciator.h \
area.cpp \
area.h \
bank.cpp \
bank.h \
codec.cpp \
codec.h \
console.cpp \
console.h \
control.cpp \
control.h \
dimi.cpp \
dimi.h \
fumi.cpp \
fumi.h \
field.cpp \
field.h \
handler.cpp \
handler.h \
instrument.cpp \
instrument.h \
instruments.cpp \
instruments.h \
inventory.cpp \
inventory.h \
log.cpp \
log.h \
object.cpp \
object.h \
resource.cpp \
resource.h \
sensor.cpp \
sensor.h \
server.cpp \
server.h \
structs.cpp \
structs.h \
test.cpp \
test.h \
timers.cpp \
timers.h \
utils.cpp \
utils.h \
vars.cpp \
vars.h \
watchdog.cpp \
watchdog.h
libtest_agent_la_LDFLAGS = -module -version-info @HPI_LIB_VERSION@
libtest_agent_la_LIBADD = -lm -lpthread $(top_builddir)/utils/libopenhpiutils.la
|