File: Makefile.am

package info (click to toggle)
tango 9.3.4%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 95,792 kB
  • sloc: cpp: 138,382; sh: 8,009; ansic: 1,083; makefile: 996; java: 800; python: 264; xml: 54
file content (150 lines) | stat: -rw-r--r-- 7,441 bytes parent folder | download | duplicates (3)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
SUBDIRS=idl jpeg jpeg_mmx .

# We need the ORB to compile and the tango header files to compile
AM_CPPFLAGS = -I$(top_srcdir)/lib/cpp/client \
              -I$(top_srcdir)/lib/cpp/log4tango/include \
              -I$(top_builddir)/lib/cpp/log4tango/include \
              -I$(top_builddir)/lib/cpp/server \
              $(ORB_INCLUDE_PREFIX) $(LIBZMQ_CFLAGS)

# We're making a libtool convenience library which is not to be installed,
# therefore the automake noinst variable
noinst_LTLIBRARIES=libserver.la

AM_CXXFLAGS=-D_TANGO_LIB

# The sources
libserver_la_SOURCES = attrdesc.cpp                 \
                      attrgetsetprop.cpp            \
                      attribute.cpp                 \
                      attrsetval.cpp                \
                      attrmanip.cpp                 \
                      basiccommand.cpp              \
                      blackbox.cpp                  \
                      class_factory.cpp             \
                      classattribute.cpp            \
                      command.cpp                   \
                      coutappender.cpp              \
                      classpipe.cpp                 \
                      dev_event.cpp                 \
                      dev_poll.cpp                  \
                      device.cpp                    \
                      device_2.cpp                  \
                      device_3.cpp                  \
                      device_4.cpp                  \
                      device_5.cpp                  \
                      deviceclass.cpp               \
                      devicelog.cpp                 \
                      devintr.cpp                   \
                      dintrthread.cpp               \
                      dserver.cpp                   \
                      dserverclass.cpp              \
                      dserverlock.cpp               \
                      dserverlog.cpp                \
                      dserverpoll.cpp               \
                      dserversignal.cpp             \
                      encoded_attribute.cpp         \
                      eventcmds.cpp                 \
                      eventsupplier.cpp             \
                      except.cpp                    \
                      fwdattrdesc.cpp               \
                      fwdattribute.cpp              \
                      logcmds.cpp                   \
                      logging.cpp                   \
                      logstream.cpp                 \
                      multiattribute.cpp            \
                      notifdeventsupplier.cpp       \
                      pipe.cpp                      \
                      pollcmds.cpp                  \
                      pollobj.cpp                   \
                      pollring.cpp                  \
                      pollthread.cpp                \
                      rootattreg.cpp                \
                      seqvec.cpp                    \
                      subdev_diag.cpp               \
                      tangoappender.cpp             \
                      tangorollingfileappender.cpp  \
                      templ_inst.cpp                \
                      thsig.cpp                     \
                      utils.cpp                     \
                      utils_polling.cpp             \
                      utils_shut.cpp                \
                      w_attribute.cpp               \
                      w_pipe.cpp                    \
                      zmqeventsupplier.cpp


tangoincludedir = $(includedir)/tango

tangoinclude_HEADERS = attrdesc.h                 \
                       attribute.h                \
                       attrmanip.h                \
                       attrprop.h                 \
                       auto_tango_monitor.h       \
                       basiccommand.h             \
                       blackbox.h                 \
                       classattribute.h           \
                       classpipe.h                \
                       command.h                  \
                       coutappender.h             \
                       coutbuf.h                  \
                       device.h                   \
                       device_2.h                 \
                       device_3.h                 \
                       device_4.h                 \
                       device_5.h                 \
                       deviceclass.h              \
                       devintr.h                  \
                       dintrthread.h              \
                       dserver.h                  \
                       dserverclass.h             \
                       dserversignal.h            \
                       encoded_attribute.h        \
                       encoded_format.h           \
                       eventsupplier.h            \
                       except.h                   \
                       fwdattrdesc.h              \
                       fwdattribute.h             \
                       log4tango.h                \
                       logcmds.h                  \
                       logging.h                  \
                       logstream.h                \
                       multiattribute.h           \
                       ntservice.h                \
                       pipe.h                     \
                       pipedesc.h                 \
                       pollcmds.h                 \
                       pollext.h                  \
                       pollobj.h                  \
                       pollring.h                 \
                       pollthread.h               \
                       readers_writers_lock.h     \
                       rootattreg.h               \
                       seqvec.h                   \
                       subdev_diag.h              \
                       tango.h                    \
                       tango_config.h             \
                       tango_const.h              \
                       tango_monitor.h            \
                       tangoappender.h            \
                       tangorollingfileappender.h \
                       utils.h                    \
                       w_attribute.h              \
                       w_pipe.h                   \
                       attribute.tpp              \
                       attribute_spec.tpp         \
                       attrprop.tpp               \
                       attrsetval.tpp             \
                       device_3.tpp               \
                       fwdattribute.tpp           \
                       fwdattribute_spec.tpp      \
                       pipe.tpp                   \
                       pollext.tpp                \
                       pollring.tpp               \
                       pollthread.tpp             \
                       utils.tpp                  \
                       utils_spec.tpp             \
                       w_attribute.tpp            \
                       w_attribute_spec.tpp       \
                       w_attrsetval.tpp           \
                       w_pipe.tpp