]> sigrok.org Git - libsigrok.git/blob - Makefile.am
Switch to a non-recursive automake setup.
[libsigrok.git] / Makefile.am
1 ##
2 ## This file is part of the libsigrok project.
3 ##
4 ## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5 ## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
6 ##
7 ## This program is free software: you can redistribute it and/or modify
8 ## it under the terms of the GNU General Public License as published by
9 ## the Free Software Foundation, either version 3 of the License, or
10 ## (at your option) any later version.
11 ##
12 ## This program is distributed in the hope that it will be useful,
13 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ## GNU General Public License for more details.
16 ##
17 ## You should have received a copy of the GNU General Public License
18 ## along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 ##
20
21 ACLOCAL_AMFLAGS = -I autostuff
22
23 AM_CPPFLAGS = -DFIRMWARE_DIR='"$(FIRMWARE_DIR)"'
24
25 lib_LTLIBRARIES = libsigrok.la
26
27 # Backend files
28 libsigrok_la_SOURCES = \
29         backend.c \
30         device.c \
31         session.c \
32         session_file.c \
33         session_driver.c \
34         hwdriver.c \
35         filter.c \
36         strutil.c \
37         log.c \
38         version.c \
39         error.c \
40         std.c
41
42 # Input formats
43 libsigrok_la_SOURCES += \
44         input/binary.c \
45         input/chronovu_la8.c \
46         input/csv.c \
47         input/input.c \
48         input/vcd.c \
49         input/wav.c
50
51 # Output formats
52 libsigrok_la_SOURCES += \
53         output/binary.c \
54         output/vcd.c \
55         output/ols.c \
56         output/gnuplot.c \
57         output/chronovu_la8.c \
58         output/csv.c \
59         output/analog.c \
60         output/output.c \
61         output/text/text.c \
62         output/text/text.h \
63         output/text/bits.c \
64         output/text/hex.c \
65         output/text/ascii.c
66
67 # Hardware (common files)
68 libsigrok_la_SOURCES += \
69         hardware/common/scpi.c \
70         hardware/common/scpi_tcp.c \
71         hardware/common/scpi_usbtmc.c
72 if NEED_RPC
73 libsigrok_la_SOURCES += \
74         hardware/common/scpi_vxi.c \
75         hardware/common/vxi_clnt.c \
76         hardware/common/vxi_xdr.c
77 endif
78 if NEED_SERIAL
79 libsigrok_la_SOURCES += \
80         hardware/common/serial.c \
81         hardware/common/scpi_serial.c
82 endif
83 if NEED_USB
84 libsigrok_la_SOURCES += \
85         hardware/common/ezusb.c \
86         hardware/common/usb.c \
87         hardware/common/scpi_usbtmc_libusb.c
88 endif
89 if NEED_VISA
90 libsigrok_la_SOURCES += \
91         hardware/common/scpi_visa.c
92 endif
93
94 # Hardware (DMM parsers)
95 libsigrok_la_SOURCES += \
96         hardware/common/dmm/es519xx.c \
97         hardware/common/dmm/fs9721.c \
98         hardware/common/dmm/fs9922.c \
99         hardware/common/dmm/m2110.c \
100         hardware/common/dmm/metex14.c \
101         hardware/common/dmm/rs9lcd.c
102
103 # Hardware drivers
104 if HW_AGILENT_DMM
105 libsigrok_la_SOURCES += \
106         hardware/agilent-dmm/api.c \
107         hardware/agilent-dmm/agilent-dmm.h \
108         hardware/agilent-dmm/sched.c
109 endif
110 if HW_ALSA
111 libsigrok_la_SOURCES += \
112         hardware/alsa/protocol.h \
113         hardware/alsa/protocol.c \
114         hardware/alsa/api.c
115 endif
116 if HW_APPA_55II
117 libsigrok_la_SOURCES += \
118         hardware/appa-55ii/protocol.h \
119         hardware/appa-55ii/protocol.c \
120         hardware/appa-55ii/api.c
121 endif
122 if HW_ASIX_SIGMA
123 libsigrok_la_SOURCES += \
124         hardware/asix-sigma/asix-sigma.h \
125         hardware/asix-sigma/asix-sigma.c
126 endif
127 if HW_ATTEN_PPS3XXX
128 libsigrok_la_SOURCES += \
129         hardware/atten-pps3xxx/protocol.h \
130         hardware/atten-pps3xxx/protocol.c \
131         hardware/atten-pps3xxx/api.c
132 endif
133 if HW_BRYMEN_BM86X
134 libsigrok_la_SOURCES += \
135         hardware/brymen-bm86x/protocol.h \
136         hardware/brymen-bm86x/protocol.c \
137         hardware/brymen-bm86x/api.c
138 endif
139 if HW_BRYMEN_DMM
140 libsigrok_la_SOURCES += \
141         hardware/brymen-dmm/parser.c \
142         hardware/brymen-dmm/protocol.h \
143         hardware/brymen-dmm/protocol.c \
144         hardware/brymen-dmm/api.c
145 endif
146 if HW_CEM_DT_885X
147 libsigrok_la_SOURCES += \
148         hardware/cem-dt-885x/protocol.h \
149         hardware/cem-dt-885x/protocol.c \
150         hardware/cem-dt-885x/api.c
151 endif
152 if HW_CENTER_3XX
153 libsigrok_la_SOURCES += \
154         hardware/center-3xx/protocol.h \
155         hardware/center-3xx/protocol.c \
156         hardware/center-3xx/api.c
157 endif
158 if HW_CHRONOVU_LA8
159 libsigrok_la_SOURCES += \
160         hardware/chronovu-la8/protocol.h \
161         hardware/chronovu-la8/protocol.c \
162         hardware/chronovu-la8/api.c
163 endif
164 if HW_COLEAD_SLM
165 libsigrok_la_SOURCES += \
166         hardware/colead-slm/protocol.h \
167         hardware/colead-slm/protocol.c \
168         hardware/colead-slm/api.c
169 endif
170 if HW_CONRAD_DIGI_35_CPU
171 libsigrok_la_SOURCES += \
172         hardware/conrad-digi-35-cpu/protocol.h \
173         hardware/conrad-digi-35-cpu/protocol.c \
174         hardware/conrad-digi-35-cpu/api.c
175 endif
176 if HW_DEMO
177 libsigrok_la_SOURCES += \
178         hardware/demo/demo.c
179 endif
180 if HW_FLUKE_DMM
181 libsigrok_la_SOURCES += \
182         hardware/fluke-dmm/fluke-dmm.h \
183         hardware/fluke-dmm/fluke.c \
184         hardware/fluke-dmm/api.c
185 endif
186 if HW_FX2LAFW
187 libsigrok_la_SOURCES += \
188         hardware/fx2lafw/protocol.h \
189         hardware/fx2lafw/protocol.c \
190         hardware/fx2lafw/api.c
191 endif
192 if HW_GMC_MH_1X_2X
193 libsigrok_la_SOURCES += \
194         hardware/gmc-mh-1x-2x/protocol.h \
195         hardware/gmc-mh-1x-2x/protocol.c \
196         hardware/gmc-mh-1x-2x/api.c
197 endif
198 if HW_HAMEG_HMO
199 libsigrok_la_SOURCES += \
200         hardware/hameg-hmo/protocol.h \
201         hardware/hameg-hmo/protocol.c \
202         hardware/hameg-hmo/api.c
203 endif
204 if HW_HANTEK_DSO
205 libsigrok_la_SOURCES += \
206         hardware/hantek-dso/dso.h \
207         hardware/hantek-dso/dso.c \
208         hardware/hantek-dso/api.c
209 endif
210 if HW_IKALOGIC_SCANALOGIC2
211 libsigrok_la_SOURCES += \
212         hardware/ikalogic-scanalogic2/protocol.h \
213         hardware/ikalogic-scanalogic2/protocol.c \
214         hardware/ikalogic-scanalogic2/api.c
215 endif
216 if HW_IKALOGIC_SCANAPLUS
217 libsigrok_la_SOURCES += \
218         hardware/ikalogic-scanaplus/protocol.h \
219         hardware/ikalogic-scanaplus/protocol.c \
220         hardware/ikalogic-scanaplus/api.c
221 endif
222 if HW_KECHENG_KC_330B
223 libsigrok_la_SOURCES += \
224         hardware/kecheng-kc-330b/protocol.h \
225         hardware/kecheng-kc-330b/protocol.c \
226         hardware/kecheng-kc-330b/api.c
227 endif
228 if HW_LASCAR_EL_USB
229 libsigrok_la_SOURCES += \
230         hardware/lascar-el-usb/protocol.h \
231         hardware/lascar-el-usb/protocol.c \
232         hardware/lascar-el-usb/api.c
233 endif
234 if HW_LINK_MSO19
235 libsigrok_la_SOURCES += \
236         hardware/link-mso19/protocol.h \
237         hardware/link-mso19/protocol.c \
238         hardware/link-mso19/api.c
239 endif
240 if HW_MIC_985XX
241 libsigrok_la_SOURCES += \
242         hardware/mic-985xx/protocol.h \
243         hardware/mic-985xx/protocol.c \
244         hardware/mic-985xx/api.c
245 endif
246 if HW_NORMA_DMM
247 libsigrok_la_SOURCES += \
248         hardware/norma-dmm/protocol.h \
249         hardware/norma-dmm/protocol.c \
250         hardware/norma-dmm/api.c
251 endif
252 if HW_OLS
253 libsigrok_la_SOURCES += \
254         hardware/openbench-logic-sniffer/protocol.h \
255         hardware/openbench-logic-sniffer/protocol.c \
256         hardware/openbench-logic-sniffer/api.c
257 endif
258 if HW_RIGOL_DS
259 libsigrok_la_SOURCES += \
260         hardware/rigol-ds/protocol.h \
261         hardware/rigol-ds/protocol.c \
262         hardware/rigol-ds/api.c
263 endif
264 if HW_SALEAE_LOGIC16
265 libsigrok_la_SOURCES += \
266         hardware/saleae-logic16/protocol.h \
267         hardware/saleae-logic16/protocol.c \
268         hardware/saleae-logic16/api.c
269 endif
270 if HW_SERIAL_DMM
271 libsigrok_la_SOURCES += \
272         hardware/serial-dmm/protocol.h \
273         hardware/serial-dmm/protocol.c \
274         hardware/serial-dmm/api.c
275 endif
276 if HW_SYSCLK_LWLA
277 libsigrok_la_SOURCES += \
278         hardware/sysclk-lwla/lwla.h \
279         hardware/sysclk-lwla/lwla.c \
280         hardware/sysclk-lwla/protocol.h \
281         hardware/sysclk-lwla/protocol.c \
282         hardware/sysclk-lwla/api.c
283 endif
284 if HW_TELEINFO
285 libsigrok_la_SOURCES += \
286         hardware/teleinfo/protocol.h \
287         hardware/teleinfo/protocol.c \
288         hardware/teleinfo/api.c
289 endif
290 if HW_TONDAJ_SL_814
291 libsigrok_la_SOURCES += \
292         hardware/tondaj-sl-814/protocol.h \
293         hardware/tondaj-sl-814/protocol.c \
294         hardware/tondaj-sl-814/api.c
295 endif
296 if HW_UNI_T_DMM
297 libsigrok_la_SOURCES += \
298         hardware/uni-t-dmm/protocol.h \
299         hardware/uni-t-dmm/protocol.c \
300         hardware/uni-t-dmm/api.c
301 endif
302 if HW_UNI_T_UT32X
303 libsigrok_la_SOURCES += \
304         hardware/uni-t-ut32x/protocol.h \
305         hardware/uni-t-ut32x/protocol.c \
306         hardware/uni-t-ut32x/api.c
307 endif
308 if HW_VICTOR_DMM
309 libsigrok_la_SOURCES += \
310         hardware/victor-dmm/protocol.h \
311         hardware/victor-dmm/protocol.c \
312         hardware/victor-dmm/api.c
313 endif
314 if HW_ZEROPLUS_LOGIC_CUBE
315 libsigrok_la_SOURCES += \
316         hardware/zeroplus-logic-cube/analyzer.c \
317         hardware/zeroplus-logic-cube/analyzer.h \
318         hardware/zeroplus-logic-cube/gl_usb.h \
319         hardware/zeroplus-logic-cube/gl_usb.c \
320         hardware/zeroplus-logic-cube/protocol.h \
321         hardware/zeroplus-logic-cube/protocol.c \
322         hardware/zeroplus-logic-cube/api.c
323 endif
324
325 libsigrok_la_LIBADD = $(LIBOBJS)
326
327 libsigrok_la_LDFLAGS = $(SR_LIB_LDFLAGS)
328
329 library_includedir = $(includedir)/libsigrok
330 library_include_HEADERS = libsigrok.h proto.h version.h
331 noinst_HEADERS = libsigrok-internal.h
332
333 pkgconfigdir = $(libdir)/pkgconfig
334 pkgconfig_DATA = libsigrok.pc
335
336 EXTRA_DIST = \
337         Doxyfile \
338         HACKING \
339         README.devices \
340         contrib/gnuplot_chronovu_la8.gpi \
341         contrib/gnuplot_rigol_ds1xx2.gpi \
342         contrib/gnuplot_usbeesx.gpi \
343         contrib/gnuplot_usbeedx8.gpi \
344         contrib/gnuplot_usbeedx16.gpi \
345         contrib/sigrok-logo-notext.png \
346         contrib/z60_libsigrok.rules
347
348 if HAVE_CHECK
349
350 TESTS = tests/check_main
351
352 check_PROGRAMS = ${TESTS}
353
354 tests_check_main_SOURCES = \
355         libsigrok.h \
356         tests/lib.c \
357         tests/lib.h \
358         tests/check_main.c \
359         tests/check_core.c \
360         tests/check_input_all.c \
361         tests/check_input_binary.c \
362         tests/check_output_all.c \
363         tests/check_strutil.c \
364         tests/check_version.c \
365         tests/check_driver_all.c
366
367 tests_check_main_CFLAGS = @check_CFLAGS@
368
369 tests_check_main_LDADD = $(top_builddir)/libsigrok.la @check_LIBS@
370
371 endif
372
373 MAINTAINERCLEANFILES = ChangeLog
374
375 .PHONY: ChangeLog
376 ChangeLog:
377         git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
378
379 dist-hook: ChangeLog
380