-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
379 lines (354 loc) · 8.93 KB
/
Makefile.am
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
##
## This file is part of the libsigrok project.
##
## Copyright (C) 2010-2012 Bert Vermeulen <[email protected]>
## Copyright (C) 2012 Alexandru Gagniuc <[email protected]>
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## 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. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
##
ACLOCAL_AMFLAGS = -I autostuff
AM_CPPFLAGS = -DFIRMWARE_DIR='"$(FIRMWARE_DIR)"'
lib_LTLIBRARIES = libsigrok.la
# Backend files
libsigrok_la_SOURCES = \
backend.c \
device.c \
session.c \
session_file.c \
session_driver.c \
hwdriver.c \
trigger.c \
soft-trigger.c \
strutil.c \
log.c \
version.c \
error.c \
std.c
# Input formats
libsigrok_la_SOURCES += \
input/binary.c \
input/chronovu_la8.c \
input/csv.c \
input/input.c \
input/vcd.c \
input/wav.c
# Output formats
libsigrok_la_SOURCES += \
output/output.c \
output/analog.c \
output/ascii.c \
output/bits.c \
output/binary.c \
output/csv.c \
output/chronovu_la8.c \
output/gnuplot.c \
output/hex.c \
output/ols.c \
output/vcd.c
# Hardware (common files)
libsigrok_la_SOURCES += \
hardware/common/scpi.c \
hardware/common/scpi_tcp.c
if NEED_RPC
libsigrok_la_SOURCES += \
hardware/common/scpi_vxi.c \
hardware/common/vxi_clnt.c \
hardware/common/vxi_xdr.c \
hardware/common/vxi.h
endif
if NEED_SERIAL
libsigrok_la_SOURCES += \
hardware/common/serial.c \
hardware/common/scpi_serial.c
endif
if NEED_USB
libsigrok_la_SOURCES += \
hardware/common/ezusb.c \
hardware/common/usb.c \
hardware/common/scpi_usbtmc_libusb.c
endif
if NEED_VISA
libsigrok_la_SOURCES += \
hardware/common/scpi_visa.c
endif
# Hardware (DMM parsers)
libsigrok_la_SOURCES += \
hardware/common/dmm/es519xx.c \
hardware/common/dmm/fs9721.c \
hardware/common/dmm/fs9922.c \
hardware/common/dmm/m2110.c \
hardware/common/dmm/metex14.c \
hardware/common/dmm/rs9lcd.c
# Hardware drivers
if HW_AGILENT_DMM
libsigrok_la_SOURCES += \
hardware/agilent-dmm/api.c \
hardware/agilent-dmm/agilent-dmm.h \
hardware/agilent-dmm/sched.c
endif
if HW_APPA_55II
libsigrok_la_SOURCES += \
hardware/appa-55ii/protocol.h \
hardware/appa-55ii/protocol.c \
hardware/appa-55ii/api.c
endif
if HW_ASIX_SIGMA
libsigrok_la_SOURCES += \
hardware/asix-sigma/asix-sigma.h \
hardware/asix-sigma/asix-sigma.c
endif
if HW_ATTEN_PPS3XXX
libsigrok_la_SOURCES += \
hardware/atten-pps3xxx/protocol.h \
hardware/atten-pps3xxx/protocol.c \
hardware/atten-pps3xxx/api.c
endif
if HW_BRYMEN_BM86X
libsigrok_la_SOURCES += \
hardware/brymen-bm86x/protocol.h \
hardware/brymen-bm86x/protocol.c \
hardware/brymen-bm86x/api.c
endif
if HW_BRYMEN_DMM
libsigrok_la_SOURCES += \
hardware/brymen-dmm/parser.c \
hardware/brymen-dmm/protocol.h \
hardware/brymen-dmm/protocol.c \
hardware/brymen-dmm/api.c
endif
if HW_CEM_DT_885X
libsigrok_la_SOURCES += \
hardware/cem-dt-885x/protocol.h \
hardware/cem-dt-885x/protocol.c \
hardware/cem-dt-885x/api.c
endif
if HW_CENTER_3XX
libsigrok_la_SOURCES += \
hardware/center-3xx/protocol.h \
hardware/center-3xx/protocol.c \
hardware/center-3xx/api.c
endif
if HW_CHRONOVU_LA
libsigrok_la_SOURCES += \
hardware/chronovu-la/protocol.h \
hardware/chronovu-la/protocol.c \
hardware/chronovu-la/api.c
endif
if HW_COLEAD_SLM
libsigrok_la_SOURCES += \
hardware/colead-slm/protocol.h \
hardware/colead-slm/protocol.c \
hardware/colead-slm/api.c
endif
if HW_CONRAD_DIGI_35_CPU
libsigrok_la_SOURCES += \
hardware/conrad-digi-35-cpu/protocol.h \
hardware/conrad-digi-35-cpu/protocol.c \
hardware/conrad-digi-35-cpu/api.c
endif
if HW_DEMO
libsigrok_la_SOURCES += \
hardware/demo/demo.c
endif
if HW_DPSCOPESE
libsigrok_la_SOURCES += \
hardware/dpscopese/protocol.h \
hardware/dpscopese/protocol.c \
hardware/dpscopese/api.c
endif
if HW_FLUKE_DMM
libsigrok_la_SOURCES += \
hardware/fluke-dmm/fluke-dmm.h \
hardware/fluke-dmm/fluke.c \
hardware/fluke-dmm/api.c
endif
if HW_FX2LAFW
libsigrok_la_SOURCES += \
hardware/fx2lafw/protocol.h \
hardware/fx2lafw/protocol.c \
hardware/fx2lafw/api.c
endif
if HW_GMC_MH_1X_2X
libsigrok_la_SOURCES += \
hardware/gmc-mh-1x-2x/protocol.h \
hardware/gmc-mh-1x-2x/protocol.c \
hardware/gmc-mh-1x-2x/api.c
endif
if HW_HAMEG_HMO
libsigrok_la_SOURCES += \
hardware/hameg-hmo/protocol.h \
hardware/hameg-hmo/protocol.c \
hardware/hameg-hmo/api.c
endif
if HW_HANTEK_DSO
libsigrok_la_SOURCES += \
hardware/hantek-dso/dso.h \
hardware/hantek-dso/dso.c \
hardware/hantek-dso/api.c
endif
if HW_IKALOGIC_SCANALOGIC2
libsigrok_la_SOURCES += \
hardware/ikalogic-scanalogic2/protocol.h \
hardware/ikalogic-scanalogic2/protocol.c \
hardware/ikalogic-scanalogic2/api.c
endif
if HW_IKALOGIC_SCANAPLUS
libsigrok_la_SOURCES += \
hardware/ikalogic-scanaplus/protocol.h \
hardware/ikalogic-scanaplus/protocol.c \
hardware/ikalogic-scanaplus/api.c
endif
if HW_KECHENG_KC_330B
libsigrok_la_SOURCES += \
hardware/kecheng-kc-330b/protocol.h \
hardware/kecheng-kc-330b/protocol.c \
hardware/kecheng-kc-330b/api.c
endif
if HW_LASCAR_EL_USB
libsigrok_la_SOURCES += \
hardware/lascar-el-usb/protocol.h \
hardware/lascar-el-usb/protocol.c \
hardware/lascar-el-usb/api.c
endif
if HW_MIC_985XX
libsigrok_la_SOURCES += \
hardware/mic-985xx/protocol.h \
hardware/mic-985xx/protocol.c \
hardware/mic-985xx/api.c
endif
if HW_MOTECH_LPS_30X
libsigrok_la_SOURCES += \
hardware/motech-lps-30x/protocol.h \
hardware/motech-lps-30x/protocol.c \
hardware/motech-lps-30x/api.c
endif
if HW_NORMA_DMM
libsigrok_la_SOURCES += \
hardware/norma-dmm/protocol.h \
hardware/norma-dmm/protocol.c \
hardware/norma-dmm/api.c
endif
if HW_OLS
libsigrok_la_SOURCES += \
hardware/openbench-logic-sniffer/protocol.h \
hardware/openbench-logic-sniffer/protocol.c \
hardware/openbench-logic-sniffer/api.c
endif
if HW_RIGOL_DS
libsigrok_la_SOURCES += \
hardware/rigol-ds/protocol.h \
hardware/rigol-ds/protocol.c \
hardware/rigol-ds/api.c
endif
if HW_SALEAE_LOGIC16
libsigrok_la_SOURCES += \
hardware/saleae-logic16/protocol.h \
hardware/saleae-logic16/protocol.c \
hardware/saleae-logic16/api.c
endif
if HW_SERIAL_DMM
libsigrok_la_SOURCES += \
hardware/serial-dmm/protocol.h \
hardware/serial-dmm/protocol.c \
hardware/serial-dmm/api.c
endif
if HW_SYSCLK_LWLA
libsigrok_la_SOURCES += \
hardware/sysclk-lwla/lwla.h \
hardware/sysclk-lwla/lwla.c \
hardware/sysclk-lwla/protocol.h \
hardware/sysclk-lwla/protocol.c \
hardware/sysclk-lwla/api.c
endif
if HW_TELEINFO
libsigrok_la_SOURCES += \
hardware/teleinfo/protocol.h \
hardware/teleinfo/protocol.c \
hardware/teleinfo/api.c
endif
if HW_TONDAJ_SL_814
libsigrok_la_SOURCES += \
hardware/tondaj-sl-814/protocol.h \
hardware/tondaj-sl-814/protocol.c \
hardware/tondaj-sl-814/api.c
endif
if HW_UNI_T_DMM
libsigrok_la_SOURCES += \
hardware/uni-t-dmm/protocol.h \
hardware/uni-t-dmm/protocol.c \
hardware/uni-t-dmm/api.c
endif
if HW_UNI_T_UT32X
libsigrok_la_SOURCES += \
hardware/uni-t-ut32x/protocol.h \
hardware/uni-t-ut32x/protocol.c \
hardware/uni-t-ut32x/api.c
endif
if HW_VICTOR_DMM
libsigrok_la_SOURCES += \
hardware/victor-dmm/protocol.h \
hardware/victor-dmm/protocol.c \
hardware/victor-dmm/api.c
endif
if HW_ZEROPLUS_LOGIC_CUBE
libsigrok_la_SOURCES += \
hardware/zeroplus-logic-cube/analyzer.c \
hardware/zeroplus-logic-cube/analyzer.h \
hardware/zeroplus-logic-cube/gl_usb.h \
hardware/zeroplus-logic-cube/gl_usb.c \
hardware/zeroplus-logic-cube/protocol.h \
hardware/zeroplus-logic-cube/protocol.c \
hardware/zeroplus-logic-cube/api.c
endif
libsigrok_la_LIBADD = $(LIBOBJS)
libsigrok_la_LDFLAGS = $(SR_LIB_LDFLAGS)
library_includedir = $(includedir)/libsigrok
library_include_HEADERS = libsigrok.h proto.h version.h
noinst_HEADERS = libsigrok-internal.h
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libsigrok.pc
EXTRA_DIST = \
Doxyfile \
HACKING \
README.devices \
contrib/gnuplot_chronovu_la8.gpi \
contrib/gnuplot_rigol_ds1xx2.gpi \
contrib/gnuplot_usbeesx.gpi \
contrib/gnuplot_usbeedx8.gpi \
contrib/gnuplot_usbeedx16.gpi \
contrib/sigrok-logo-notext.png \
contrib/z60_libsigrok.rules
if HAVE_CHECK
TESTS = tests/check_main
check_PROGRAMS = ${TESTS}
tests_check_main_SOURCES = \
libsigrok.h \
tests/lib.c \
tests/lib.h \
tests/check_main.c \
tests/check_core.c \
tests/check_input_all.c \
tests/check_input_binary.c \
tests/check_output_all.c \
tests/check_strutil.c \
tests/check_version.c \
tests/check_driver_all.c
tests_check_main_CFLAGS = @check_CFLAGS@
tests_check_main_LDADD = $(top_builddir)/libsigrok.la @check_LIBS@
endif
MAINTAINERCLEANFILES = ChangeLog
.PHONY: ChangeLog
ChangeLog:
git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
dist-hook: ChangeLog