]> sigrok.org Git - libsigrok.git/blame_incremental - Makefile.am
output/wav: Initial module skeleton.
[libsigrok.git] / Makefile.am
... / ...
CommitLineData
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
21ACLOCAL_AMFLAGS = -I autostuff
22
23AM_CPPFLAGS = -Isrc -DFIRMWARE_DIR='"$(FIRMWARE_DIR)"'
24
25lib_LTLIBRARIES = libsigrok.la
26
27# Backend files
28libsigrok_la_SOURCES = \
29 src/backend.c \
30 src/device.c \
31 src/session.c \
32 src/session_file.c \
33 src/session_driver.c \
34 src/drivers.c \
35 src/hwdriver.c \
36 src/trigger.c \
37 src/soft-trigger.c \
38 src/strutil.c \
39 src/log.c \
40 src/version.c \
41 src/error.c \
42 src/std.c
43
44# Input modules
45libsigrok_la_SOURCES += \
46 src/input/binary.c \
47 src/input/chronovu_la8.c \
48 src/input/csv.c \
49 src/input/input.c \
50 src/input/vcd.c \
51 src/input/wav.c
52
53# Output modules
54libsigrok_la_SOURCES += \
55 src/output/output.c \
56 src/output/analog.c \
57 src/output/ascii.c \
58 src/output/bits.c \
59 src/output/binary.c \
60 src/output/csv.c \
61 src/output/chronovu_la8.c \
62 src/output/wav.c \
63 src/output/gnuplot.c \
64 src/output/hex.c \
65 src/output/ols.c \
66 src/output/vcd.c
67
68# SCPI support
69libsigrok_la_SOURCES += \
70 src/scpi/scpi.c \
71 src/scpi/scpi_tcp.c
72if NEED_RPC
73libsigrok_la_SOURCES += \
74 src/scpi/scpi_vxi.c \
75 src/scpi/vxi_clnt.c \
76 src/scpi/vxi_xdr.c \
77 src/scpi/vxi.h
78endif
79if NEED_SERIAL
80libsigrok_la_SOURCES += \
81 src/serial.c \
82 src/scpi/scpi_serial.c
83endif
84if NEED_USB
85libsigrok_la_SOURCES += \
86 src/ezusb.c \
87 src/usb.c \
88 src/scpi/scpi_usbtmc_libusb.c
89endif
90if NEED_VISA
91libsigrok_la_SOURCES += \
92 src/scpi/scpi_visa.c
93endif
94
95# Hardware (DMM chip parsers)
96libsigrok_la_SOURCES += \
97 src/dmm/es519xx.c \
98 src/dmm/fs9721.c \
99 src/dmm/fs9922.c \
100 src/dmm/m2110.c \
101 src/dmm/metex14.c \
102 src/dmm/rs9lcd.c
103
104# Hardware drivers
105if HW_AGILENT_DMM
106libsigrok_la_SOURCES += \
107 src/hardware/agilent-dmm/api.c \
108 src/hardware/agilent-dmm/agilent-dmm.h \
109 src/hardware/agilent-dmm/sched.c
110endif
111if HW_APPA_55II
112libsigrok_la_SOURCES += \
113 src/hardware/appa-55ii/protocol.h \
114 src/hardware/appa-55ii/protocol.c \
115 src/hardware/appa-55ii/api.c
116endif
117if HW_ASIX_SIGMA
118libsigrok_la_SOURCES += \
119 src/hardware/asix-sigma/asix-sigma.h \
120 src/hardware/asix-sigma/asix-sigma.c
121endif
122if HW_ATTEN_PPS3XXX
123libsigrok_la_SOURCES += \
124 src/hardware/atten-pps3xxx/protocol.h \
125 src/hardware/atten-pps3xxx/protocol.c \
126 src/hardware/atten-pps3xxx/api.c
127endif
128if HW_BEAGLELOGIC
129libsigrok_la_SOURCES += \
130 src/hardware/beaglelogic/beaglelogic.h \
131 src/hardware/beaglelogic/protocol.h \
132 src/hardware/beaglelogic/protocol.c \
133 src/hardware/beaglelogic/api.c
134endif
135if HW_BRYMEN_BM86X
136libsigrok_la_SOURCES += \
137 src/hardware/brymen-bm86x/protocol.h \
138 src/hardware/brymen-bm86x/protocol.c \
139 src/hardware/brymen-bm86x/api.c
140endif
141if HW_BRYMEN_DMM
142libsigrok_la_SOURCES += \
143 src/hardware/brymen-dmm/parser.c \
144 src/hardware/brymen-dmm/protocol.h \
145 src/hardware/brymen-dmm/protocol.c \
146 src/hardware/brymen-dmm/api.c
147endif
148if HW_CEM_DT_885X
149libsigrok_la_SOURCES += \
150 src/hardware/cem-dt-885x/protocol.h \
151 src/hardware/cem-dt-885x/protocol.c \
152 src/hardware/cem-dt-885x/api.c
153endif
154if HW_CENTER_3XX
155libsigrok_la_SOURCES += \
156 src/hardware/center-3xx/protocol.h \
157 src/hardware/center-3xx/protocol.c \
158 src/hardware/center-3xx/api.c
159endif
160if HW_CHRONOVU_LA
161libsigrok_la_SOURCES += \
162 src/hardware/chronovu-la/protocol.h \
163 src/hardware/chronovu-la/protocol.c \
164 src/hardware/chronovu-la/api.c
165endif
166if HW_COLEAD_SLM
167libsigrok_la_SOURCES += \
168 src/hardware/colead-slm/protocol.h \
169 src/hardware/colead-slm/protocol.c \
170 src/hardware/colead-slm/api.c
171endif
172if HW_CONRAD_DIGI_35_CPU
173libsigrok_la_SOURCES += \
174 src/hardware/conrad-digi-35-cpu/protocol.h \
175 src/hardware/conrad-digi-35-cpu/protocol.c \
176 src/hardware/conrad-digi-35-cpu/api.c
177endif
178if HW_DEMO
179libsigrok_la_SOURCES += \
180 src/hardware/demo/demo.c
181endif
182if HW_FLUKE_DMM
183libsigrok_la_SOURCES += \
184 src/hardware/fluke-dmm/fluke-dmm.h \
185 src/hardware/fluke-dmm/fluke.c \
186 src/hardware/fluke-dmm/api.c
187endif
188if HW_FX2LAFW
189libsigrok_la_SOURCES += \
190 src/hardware/fx2lafw/protocol.h \
191 src/hardware/fx2lafw/protocol.c \
192 src/hardware/fx2lafw/api.c
193endif
194if HW_GMC_MH_1X_2X
195libsigrok_la_SOURCES += \
196 src/hardware/gmc-mh-1x-2x/protocol.h \
197 src/hardware/gmc-mh-1x-2x/protocol.c \
198 src/hardware/gmc-mh-1x-2x/api.c
199endif
200if HW_HAMEG_HMO
201libsigrok_la_SOURCES += \
202 src/hardware/hameg-hmo/protocol.h \
203 src/hardware/hameg-hmo/protocol.c \
204 src/hardware/hameg-hmo/api.c
205endif
206if HW_HANTEK_DSO
207libsigrok_la_SOURCES += \
208 src/hardware/hantek-dso/dso.h \
209 src/hardware/hantek-dso/dso.c \
210 src/hardware/hantek-dso/api.c
211endif
212if HW_IKALOGIC_SCANALOGIC2
213libsigrok_la_SOURCES += \
214 src/hardware/ikalogic-scanalogic2/protocol.h \
215 src/hardware/ikalogic-scanalogic2/protocol.c \
216 src/hardware/ikalogic-scanalogic2/api.c
217endif
218if HW_IKALOGIC_SCANAPLUS
219libsigrok_la_SOURCES += \
220 src/hardware/ikalogic-scanaplus/protocol.h \
221 src/hardware/ikalogic-scanaplus/protocol.c \
222 src/hardware/ikalogic-scanaplus/api.c
223endif
224if HW_KECHENG_KC_330B
225libsigrok_la_SOURCES += \
226 src/hardware/kecheng-kc-330b/protocol.h \
227 src/hardware/kecheng-kc-330b/protocol.c \
228 src/hardware/kecheng-kc-330b/api.c
229endif
230if HW_LASCAR_EL_USB
231libsigrok_la_SOURCES += \
232 src/hardware/lascar-el-usb/protocol.h \
233 src/hardware/lascar-el-usb/protocol.c \
234 src/hardware/lascar-el-usb/api.c
235endif
236if HW_MANSON_HCS_3XXX
237libsigrok_la_SOURCES += \
238 src/hardware/manson-hcs-3xxx/protocol.h \
239 src/hardware/manson-hcs-3xxx/protocol.c \
240 src/hardware/manson-hcs-3xxx/api.c
241endif
242if HW_MIC_985XX
243libsigrok_la_SOURCES += \
244 src/hardware/mic-985xx/protocol.h \
245 src/hardware/mic-985xx/protocol.c \
246 src/hardware/mic-985xx/api.c
247endif
248if HW_MOTECH_LPS_30X
249libsigrok_la_SOURCES += \
250 src/hardware/motech-lps-30x/protocol.h \
251 src/hardware/motech-lps-30x/protocol.c \
252 src/hardware/motech-lps-30x/api.c
253endif
254if HW_NORMA_DMM
255libsigrok_la_SOURCES += \
256 src/hardware/norma-dmm/protocol.h \
257 src/hardware/norma-dmm/protocol.c \
258 src/hardware/norma-dmm/api.c
259endif
260if HW_OPENBENCH_LOGIC_SNIFFER
261libsigrok_la_SOURCES += \
262 src/hardware/openbench-logic-sniffer/protocol.h \
263 src/hardware/openbench-logic-sniffer/protocol.c \
264 src/hardware/openbench-logic-sniffer/api.c
265endif
266if HW_RIGOL_DS
267libsigrok_la_SOURCES += \
268 src/hardware/rigol-ds/protocol.h \
269 src/hardware/rigol-ds/protocol.c \
270 src/hardware/rigol-ds/api.c
271endif
272if HW_SALEAE_LOGIC16
273libsigrok_la_SOURCES += \
274 src/hardware/saleae-logic16/protocol.h \
275 src/hardware/saleae-logic16/protocol.c \
276 src/hardware/saleae-logic16/api.c
277endif
278if HW_SERIAL_DMM
279libsigrok_la_SOURCES += \
280 src/hardware/serial-dmm/protocol.h \
281 src/hardware/serial-dmm/protocol.c \
282 src/hardware/serial-dmm/api.c
283endif
284if HW_SYSCLK_LWLA
285libsigrok_la_SOURCES += \
286 src/hardware/sysclk-lwla/lwla.h \
287 src/hardware/sysclk-lwla/lwla.c \
288 src/hardware/sysclk-lwla/protocol.h \
289 src/hardware/sysclk-lwla/protocol.c \
290 src/hardware/sysclk-lwla/api.c
291endif
292if HW_TELEINFO
293libsigrok_la_SOURCES += \
294 src/hardware/teleinfo/protocol.h \
295 src/hardware/teleinfo/protocol.c \
296 src/hardware/teleinfo/api.c
297endif
298if HW_TESTO
299libsigrok_la_SOURCES += \
300 src/hardware/testo/protocol.h \
301 src/hardware/testo/protocol.c \
302 src/hardware/testo/api.c
303endif
304if HW_TONDAJ_SL_814
305libsigrok_la_SOURCES += \
306 src/hardware/tondaj-sl-814/protocol.h \
307 src/hardware/tondaj-sl-814/protocol.c \
308 src/hardware/tondaj-sl-814/api.c
309endif
310if HW_UNI_T_DMM
311libsigrok_la_SOURCES += \
312 src/hardware/uni-t-dmm/protocol.h \
313 src/hardware/uni-t-dmm/protocol.c \
314 src/hardware/uni-t-dmm/api.c
315endif
316if HW_UNI_T_UT32X
317libsigrok_la_SOURCES += \
318 src/hardware/uni-t-ut32x/protocol.h \
319 src/hardware/uni-t-ut32x/protocol.c \
320 src/hardware/uni-t-ut32x/api.c
321endif
322if HW_VICTOR_DMM
323libsigrok_la_SOURCES += \
324 src/hardware/victor-dmm/protocol.h \
325 src/hardware/victor-dmm/protocol.c \
326 src/hardware/victor-dmm/api.c
327endif
328if HW_ZEROPLUS_LOGIC_CUBE
329libsigrok_la_SOURCES += \
330 src/hardware/zeroplus-logic-cube/analyzer.c \
331 src/hardware/zeroplus-logic-cube/analyzer.h \
332 src/hardware/zeroplus-logic-cube/gl_usb.h \
333 src/hardware/zeroplus-logic-cube/gl_usb.c \
334 src/hardware/zeroplus-logic-cube/protocol.h \
335 src/hardware/zeroplus-logic-cube/protocol.c \
336 src/hardware/zeroplus-logic-cube/api.c
337endif
338
339libsigrok_la_LIBADD = $(LIBOBJS)
340
341libsigrok_la_LDFLAGS = $(SR_LIB_LDFLAGS)
342
343library_includedir = $(includedir)/libsigrok
344library_include_HEADERS = \
345 include/libsigrok/libsigrok.h \
346 include/libsigrok/proto.h \
347 include/libsigrok/version.h
348noinst_HEADERS = src/libsigrok-internal.h
349
350pkgconfigdir = $(libdir)/pkgconfig
351pkgconfig_DATA = libsigrok.pc
352
353EXTRA_DIST = \
354 Doxyfile \
355 HACKING \
356 README.devices \
357 contrib/gnuplot_chronovu_la8.gpi \
358 contrib/gnuplot_rigol_ds1xx2.gpi \
359 contrib/gnuplot_usbeesx.gpi \
360 contrib/gnuplot_usbeedx8.gpi \
361 contrib/gnuplot_usbeedx16.gpi \
362 contrib/sigrok-logo-notext.png \
363 contrib/z60_libsigrok.rules
364
365if HAVE_CHECK
366
367TESTS = tests/check_main
368
369check_PROGRAMS = ${TESTS}
370
371tests_check_main_SOURCES = \
372 include/libsigrok/libsigrok.h \
373 tests/lib.c \
374 tests/lib.h \
375 tests/check_main.c \
376 tests/check_core.c \
377 tests/check_input_all.c \
378 tests/check_input_binary.c \
379 tests/check_output_all.c \
380 tests/check_strutil.c \
381 tests/check_version.c \
382 tests/check_driver_all.c
383
384tests_check_main_CFLAGS = @check_CFLAGS@
385
386tests_check_main_LDADD = $(top_builddir)/libsigrok.la @check_LIBS@
387
388endif
389
390BUILD_EXTRA =
391INSTALL_EXTRA =
392CLEAN_EXTRA =
393
394if BINDINGS_CXX
395
396lib_LTLIBRARIES += bindings/cxx/libsigrokxx.la
397
398bindings_cxx_libsigrokxx_la_SOURCES = bindings/cxx/classes.cpp
399
400bindings_cxx_libsigrokxx_la_LIBADD = libsigrok.la $(glibmm_LIBS)
401
402bindings_cxx_libsigrokxx_la_LDFLAGS = $(SR_LIB_LDFLAGS)
403
404library_include_HEADERS += \
405 bindings/cxx/include/libsigrok/libsigrok.hpp \
406 bindings/cxx/include/libsigrok/enums.hpp
407
408pkgconfig_DATA += bindings/cxx/libsigrokxx.pc
409
410bindings/cxx/libsigrok.xml: include/libsigrok/libsigrok.h
411 $(AM_V_GEN)gccxml $(CFLAGS) -DGLIB_DISABLE_DEPRECATION_WARNINGS $< -fxml=$@
412
413bindings/cxx/enums.cpp: bindings/cxx/enums.timestamp
414
415bindings/cxx/include/libsigrok/enums.hpp: bindings/cxx/enums.timestamp
416
417bindings/cxx/enums.timestamp: bindings/cxx/enums.py bindings/cxx/libsigrok.xml \
418 bindings/cxx/ConfigKey_methods.cpp bindings/cxx/QuantityFlag_methods.cpp
419 $(AM_V_GEN)python $<
420 $(AM_V_at)touch $@
421
422bindings/cxx/classes.lo: bindings/cxx/classes.cpp bindings/cxx/enums.cpp \
423 $(library_include_HEADERS)
424
425cxx-clean:
426 rm -f bindings/cxx/libsigrok.xml
427 rm -f bindings/cxx/enums.cpp
428 rm -f bindings/cxx/include/libsigrok/enums.hpp
429 rm -f bindings/cxx/enums.timestamp
430
431CLEAN_EXTRA += cxx-clean
432
433endif
434
435if BINDINGS_PYTHON
436
437PDIR = bindings/python
438
439python-build: $(PDIR)/timestamp
440
441python-quietclean:
442 $(AM_V_at)cd $(PDIR) && python setup.py --quiet clean --all 3>&1 1>&2 2>&3 \
443 | grep -v "can.t clean it"; true
444
445$(PDIR)/timestamp: bindings/cxx/libsigrokxx.la $(PDIR)/sigrok/core/classes.i \
446 bindings/swig/classes.i $(library_include_HEADERS)
447 $(AM_V_at)$(MAKE) python-quietclean
448 $(AM_V_GEN)cd $(PDIR) && python setup.py --quiet build 3>&1 1>&2 2>&3 \
449 | grep -v "command line option.*Wstrict-prototypes"; true
450 $(AM_V_at)touch $(PDIR)/timestamp
451
452python-install:
453 cd $(PDIR) && python setup.py --quiet install --prefix $(prefix)
454
455python-clean:
456 $(AM_V_at)$(MAKE) python-quietclean
457 $(AM_V_at)rm -f $(PDIR)/timestamp
458
459BUILD_EXTRA += python-build
460INSTALL_EXTRA += python-install
461CLEAN_EXTRA += python-clean
462
463endif
464
465if BINDINGS_JAVA
466
467JDIR = bindings/java
468JPKG = org/sigrok/core
469JCLS = $(JDIR)/$(JPKG)/classes
470JINT = $(JDIR)/$(JPKG)/interfaces
471JSRC = $(JCLS)/*.java $(JINT)/*.java
472JSWG = $(JCLS)/classes.i
473JCXX = $(JCLS)/classes_wrap.cxx
474JLIB = $(JDIR)/libsigrok_java_core_classes.so
475JJAR = $(JDIR)/sigrok-core.jar
476
477java-build: $(JJAR) $(JLIB)
478
479$(JCXX): $(JSWG) bindings/swig/classes.i $(library_include_HEADERS)
480 $(AM_V_GEN)swig -c++ -java -package org.sigrok.core.classes \
481 -Iinclude -Ibindings/cxx/include -outdir $(JCLS) $(JSWG)
482
483$(JJAR): $(JCXX)
484 $(AM_V_GEN)$(JAVAC) -sourcepath $(JDIR) $(JSRC)
485 $(AM_V_at)jar cf $(JJAR) -C $(JDIR) $(JPKG)
486
487$(JLIB): $(JCXX) bindings/cxx/libsigrokxx.la $(library_include_HEADERS)
488 $(AM_V_GEN)$(CXX) $(CXXFLAGS) -L.libs -Lbindings/cxx/.libs \
489 -fno-strict-aliasing -fPIC -shared $(JCLS)/classes_wrap.cxx \
490 -lsigrokxx -o $(JLIB)
491
492java-install:
493 $(INSTALL) -d $(libdir)/jni
494 $(INSTALL) $(JLIB) -t $(libdir)/jni
495 $(INSTALL) -d $(datadir)/java
496 $(INSTALL) $(JJAR) -t $(datadir)/java
497
498java-clean:
499 rm -f $(JCXX)
500 rm -f $(JCLS)/*.java
501 rm -f $(JCLS)/*.class
502 rm -f $(JINT)/*.class
503 rm -f $(JJAR)
504 rm -f $(JLIB)
505
506BUILD_EXTRA += java-build
507INSTALL_EXTRA += java-install
508CLEAN_EXTRA += java-clean
509
510endif
511
512all-local: $(BUILD_EXTRA)
513install-exec-local: $(INSTALL_EXTRA)
514clean-local: $(CLEAN_EXTRA)
515
516MAINTAINERCLEANFILES = ChangeLog
517
518.PHONY: ChangeLog
519ChangeLog:
520 git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
521
522dist-hook: ChangeLog
523