]> sigrok.org Git - libsigrok.git/blame - Makefile.am
ols: Fix serial port timeout.
[libsigrok.git] / Makefile.am
CommitLineData
62c82025 1##
50985c20 2## This file is part of the libsigrok project.
62c82025 3##
c73d2ea4 4## Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
d375b3c3 5## Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
62c82025 6##
a1bb33af
UH
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.
62c82025 11##
a1bb33af
UH
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.
62c82025 16##
a1bb33af
UH
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/>.
62c82025 19##
a1bb33af 20
d8521c93 21ACLOCAL_AMFLAGS = -I autostuff
826938d8 22
55e55a3f 23AM_CPPFLAGS = -I$(srcdir)/src -DFIRMWARE_DIR='"$(FIRMWARE_DIR)"'
340f6e7a 24
8a7b47cd 25lib_LTLIBRARIES = libsigrok.la
a1bb33af 26
67bd8055 27# Backend files
a695d6c0 28libsigrok_la_SOURCES = \
155b680d
BV
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
960a75e4 43
155b680d
BV
44# Input modules
45libsigrok_la_SOURCES += \
155b680d 46 src/input/input.c \
b84cba4d 47 src/input/binary.c \
02e24c0c 48 src/input/chronovu_la8.c \
41d214f6 49 src/input/csv.c \
7db06394 50 src/input/vcd.c \
155b680d 51 src/input/wav.c
67bd8055 52
155b680d
BV
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 \
afaa75b9 62 src/output/wav.c \
155b680d
BV
63 src/output/gnuplot.c \
64 src/output/hex.c \
65 src/output/ols.c \
66 src/output/vcd.c
67bd8055 67
155b680d 68# SCPI support
67bd8055 69libsigrok_la_SOURCES += \
155b680d
BV
70 src/scpi/scpi.c \
71 src/scpi/scpi_tcp.c
67bd8055
UH
72if NEED_RPC
73libsigrok_la_SOURCES += \
155b680d
BV
74 src/scpi/scpi_vxi.c \
75 src/scpi/vxi_clnt.c \
76 src/scpi/vxi_xdr.c \
77 src/scpi/vxi.h
67bd8055
UH
78endif
79if NEED_SERIAL
80libsigrok_la_SOURCES += \
155b680d
BV
81 src/serial.c \
82 src/scpi/scpi_serial.c
67bd8055
UH
83endif
84if NEED_USB
85libsigrok_la_SOURCES += \
155b680d
BV
86 src/ezusb.c \
87 src/usb.c \
88 src/scpi/scpi_usbtmc_libusb.c
67bd8055
UH
89endif
90if NEED_VISA
91libsigrok_la_SOURCES += \
155b680d 92 src/scpi/scpi_visa.c
67bd8055 93endif
bb2a4ed4
ML
94if NEED_GPIB
95libsigrok_la_SOURCES += \
7343ad1e 96 src/scpi/scpi_libgpib.c
bb2a4ed4 97endif
67bd8055 98
155b680d
BV
99# Hardware (DMM chip parsers)
100libsigrok_la_SOURCES += \
101 src/dmm/es519xx.c \
102 src/dmm/fs9721.c \
103 src/dmm/fs9922.c \
104 src/dmm/m2110.c \
105 src/dmm/metex14.c \
a24c3f4a
JH
106 src/dmm/rs9lcd.c \
107 src/dmm/bm25x.c
67bd8055
UH
108
109# Hardware drivers
110if HW_AGILENT_DMM
111libsigrok_la_SOURCES += \
155b680d
BV
112 src/hardware/agilent-dmm/api.c \
113 src/hardware/agilent-dmm/agilent-dmm.h \
114 src/hardware/agilent-dmm/sched.c
67bd8055 115endif
67bd8055
UH
116if HW_APPA_55II
117libsigrok_la_SOURCES += \
155b680d
BV
118 src/hardware/appa-55ii/protocol.h \
119 src/hardware/appa-55ii/protocol.c \
120 src/hardware/appa-55ii/api.c
67bd8055
UH
121endif
122if HW_ASIX_SIGMA
123libsigrok_la_SOURCES += \
155b680d
BV
124 src/hardware/asix-sigma/asix-sigma.h \
125 src/hardware/asix-sigma/asix-sigma.c
67bd8055
UH
126endif
127if HW_ATTEN_PPS3XXX
128libsigrok_la_SOURCES += \
155b680d
BV
129 src/hardware/atten-pps3xxx/protocol.h \
130 src/hardware/atten-pps3xxx/protocol.c \
131 src/hardware/atten-pps3xxx/api.c
67bd8055 132endif
bb993797
KA
133if HW_BEAGLELOGIC
134libsigrok_la_SOURCES += \
3db4b08b 135 src/hardware/beaglelogic/beaglelogic.h \
155b680d
BV
136 src/hardware/beaglelogic/protocol.h \
137 src/hardware/beaglelogic/protocol.c \
138 src/hardware/beaglelogic/api.c
bb993797 139endif
67bd8055
UH
140if HW_BRYMEN_BM86X
141libsigrok_la_SOURCES += \
155b680d
BV
142 src/hardware/brymen-bm86x/protocol.h \
143 src/hardware/brymen-bm86x/protocol.c \
144 src/hardware/brymen-bm86x/api.c
67bd8055
UH
145endif
146if HW_BRYMEN_DMM
147libsigrok_la_SOURCES += \
155b680d
BV
148 src/hardware/brymen-dmm/parser.c \
149 src/hardware/brymen-dmm/protocol.h \
150 src/hardware/brymen-dmm/protocol.c \
151 src/hardware/brymen-dmm/api.c
67bd8055
UH
152endif
153if HW_CEM_DT_885X
154libsigrok_la_SOURCES += \
155b680d
BV
155 src/hardware/cem-dt-885x/protocol.h \
156 src/hardware/cem-dt-885x/protocol.c \
157 src/hardware/cem-dt-885x/api.c
67bd8055
UH
158endif
159if HW_CENTER_3XX
160libsigrok_la_SOURCES += \
155b680d
BV
161 src/hardware/center-3xx/protocol.h \
162 src/hardware/center-3xx/protocol.c \
163 src/hardware/center-3xx/api.c
67bd8055 164endif
7b356712 165if HW_CHRONOVU_LA
67bd8055 166libsigrok_la_SOURCES += \
155b680d
BV
167 src/hardware/chronovu-la/protocol.h \
168 src/hardware/chronovu-la/protocol.c \
169 src/hardware/chronovu-la/api.c
67bd8055
UH
170endif
171if HW_COLEAD_SLM
172libsigrok_la_SOURCES += \
155b680d
BV
173 src/hardware/colead-slm/protocol.h \
174 src/hardware/colead-slm/protocol.c \
175 src/hardware/colead-slm/api.c
67bd8055
UH
176endif
177if HW_CONRAD_DIGI_35_CPU
178libsigrok_la_SOURCES += \
155b680d
BV
179 src/hardware/conrad-digi-35-cpu/protocol.h \
180 src/hardware/conrad-digi-35-cpu/protocol.c \
181 src/hardware/conrad-digi-35-cpu/api.c
67bd8055
UH
182endif
183if HW_DEMO
184libsigrok_la_SOURCES += \
155b680d 185 src/hardware/demo/demo.c
67bd8055
UH
186endif
187if HW_FLUKE_DMM
188libsigrok_la_SOURCES += \
155b680d
BV
189 src/hardware/fluke-dmm/fluke-dmm.h \
190 src/hardware/fluke-dmm/fluke.c \
191 src/hardware/fluke-dmm/api.c
67bd8055
UH
192endif
193if HW_FX2LAFW
194libsigrok_la_SOURCES += \
155b680d
BV
195 src/hardware/fx2lafw/protocol.h \
196 src/hardware/fx2lafw/protocol.c \
197 src/hardware/fx2lafw/api.c
67bd8055
UH
198endif
199if HW_GMC_MH_1X_2X
200libsigrok_la_SOURCES += \
155b680d
BV
201 src/hardware/gmc-mh-1x-2x/protocol.h \
202 src/hardware/gmc-mh-1x-2x/protocol.c \
203 src/hardware/gmc-mh-1x-2x/api.c
67bd8055
UH
204endif
205if HW_HAMEG_HMO
206libsigrok_la_SOURCES += \
155b680d
BV
207 src/hardware/hameg-hmo/protocol.h \
208 src/hardware/hameg-hmo/protocol.c \
209 src/hardware/hameg-hmo/api.c
67bd8055
UH
210endif
211if HW_HANTEK_DSO
212libsigrok_la_SOURCES += \
155b680d
BV
213 src/hardware/hantek-dso/dso.h \
214 src/hardware/hantek-dso/dso.c \
215 src/hardware/hantek-dso/api.c
67bd8055
UH
216endif
217if HW_IKALOGIC_SCANALOGIC2
218libsigrok_la_SOURCES += \
155b680d
BV
219 src/hardware/ikalogic-scanalogic2/protocol.h \
220 src/hardware/ikalogic-scanalogic2/protocol.c \
221 src/hardware/ikalogic-scanalogic2/api.c
67bd8055
UH
222endif
223if HW_IKALOGIC_SCANAPLUS
224libsigrok_la_SOURCES += \
155b680d
BV
225 src/hardware/ikalogic-scanaplus/protocol.h \
226 src/hardware/ikalogic-scanaplus/protocol.c \
227 src/hardware/ikalogic-scanaplus/api.c
67bd8055
UH
228endif
229if HW_KECHENG_KC_330B
230libsigrok_la_SOURCES += \
155b680d
BV
231 src/hardware/kecheng-kc-330b/protocol.h \
232 src/hardware/kecheng-kc-330b/protocol.c \
233 src/hardware/kecheng-kc-330b/api.c
67bd8055
UH
234endif
235if HW_LASCAR_EL_USB
236libsigrok_la_SOURCES += \
155b680d
BV
237 src/hardware/lascar-el-usb/protocol.h \
238 src/hardware/lascar-el-usb/protocol.c \
239 src/hardware/lascar-el-usb/api.c
67bd8055 240endif
8f4e922f
UH
241if HW_MANSON_HCS_3XXX
242libsigrok_la_SOURCES += \
155b680d
BV
243 src/hardware/manson-hcs-3xxx/protocol.h \
244 src/hardware/manson-hcs-3xxx/protocol.c \
245 src/hardware/manson-hcs-3xxx/api.c
8f4e922f 246endif
67bd8055
UH
247if HW_MIC_985XX
248libsigrok_la_SOURCES += \
155b680d
BV
249 src/hardware/mic-985xx/protocol.h \
250 src/hardware/mic-985xx/protocol.c \
251 src/hardware/mic-985xx/api.c
67bd8055 252endif
41b7bd01
MH
253if HW_MOTECH_LPS_30X
254libsigrok_la_SOURCES += \
155b680d
BV
255 src/hardware/motech-lps-30x/protocol.h \
256 src/hardware/motech-lps-30x/protocol.c \
257 src/hardware/motech-lps-30x/api.c
41b7bd01 258endif
67bd8055
UH
259if HW_NORMA_DMM
260libsigrok_la_SOURCES += \
155b680d
BV
261 src/hardware/norma-dmm/protocol.h \
262 src/hardware/norma-dmm/protocol.c \
263 src/hardware/norma-dmm/api.c
67bd8055 264endif
d4b38748 265if HW_OPENBENCH_LOGIC_SNIFFER
67bd8055 266libsigrok_la_SOURCES += \
155b680d
BV
267 src/hardware/openbench-logic-sniffer/protocol.h \
268 src/hardware/openbench-logic-sniffer/protocol.c \
269 src/hardware/openbench-logic-sniffer/api.c
67bd8055 270endif
4bd80e12 271if HW_PIPISTRELLO_OLS
272libsigrok_la_SOURCES += \
273 src/hardware/pipistrello-ols/protocol.h \
274 src/hardware/pipistrello-ols/protocol.c \
275 src/hardware/pipistrello-ols/api.c
276endif
67bd8055
UH
277if HW_RIGOL_DS
278libsigrok_la_SOURCES += \
155b680d
BV
279 src/hardware/rigol-ds/protocol.h \
280 src/hardware/rigol-ds/protocol.c \
281 src/hardware/rigol-ds/api.c
67bd8055
UH
282endif
283if HW_SALEAE_LOGIC16
284libsigrok_la_SOURCES += \
155b680d
BV
285 src/hardware/saleae-logic16/protocol.h \
286 src/hardware/saleae-logic16/protocol.c \
287 src/hardware/saleae-logic16/api.c
67bd8055 288endif
ca1a7cb5
BV
289if HW_SCPI_PPS
290libsigrok_la_SOURCES += \
291 src/hardware/scpi-pps/protocol.h \
292 src/hardware/scpi-pps/protocol.c \
d4eabea8 293 src/hardware/scpi-pps/profiles.c \
ca1a7cb5
BV
294 src/hardware/scpi-pps/api.c
295endif
67bd8055
UH
296if HW_SERIAL_DMM
297libsigrok_la_SOURCES += \
155b680d
BV
298 src/hardware/serial-dmm/protocol.h \
299 src/hardware/serial-dmm/protocol.c \
300 src/hardware/serial-dmm/api.c
67bd8055
UH
301endif
302if HW_SYSCLK_LWLA
303libsigrok_la_SOURCES += \
155b680d
BV
304 src/hardware/sysclk-lwla/lwla.h \
305 src/hardware/sysclk-lwla/lwla.c \
306 src/hardware/sysclk-lwla/protocol.h \
307 src/hardware/sysclk-lwla/protocol.c \
308 src/hardware/sysclk-lwla/api.c
67bd8055
UH
309endif
310if HW_TELEINFO
311libsigrok_la_SOURCES += \
155b680d
BV
312 src/hardware/teleinfo/protocol.h \
313 src/hardware/teleinfo/protocol.c \
314 src/hardware/teleinfo/api.c
67bd8055 315endif
0acdd793
BV
316if HW_TESTO
317libsigrok_la_SOURCES += \
155b680d
BV
318 src/hardware/testo/protocol.h \
319 src/hardware/testo/protocol.c \
320 src/hardware/testo/api.c
0acdd793 321endif
67bd8055
UH
322if HW_TONDAJ_SL_814
323libsigrok_la_SOURCES += \
155b680d
BV
324 src/hardware/tondaj-sl-814/protocol.h \
325 src/hardware/tondaj-sl-814/protocol.c \
326 src/hardware/tondaj-sl-814/api.c
67bd8055
UH
327endif
328if HW_UNI_T_DMM
329libsigrok_la_SOURCES += \
155b680d
BV
330 src/hardware/uni-t-dmm/protocol.h \
331 src/hardware/uni-t-dmm/protocol.c \
332 src/hardware/uni-t-dmm/api.c
67bd8055
UH
333endif
334if HW_UNI_T_UT32X
335libsigrok_la_SOURCES += \
155b680d
BV
336 src/hardware/uni-t-ut32x/protocol.h \
337 src/hardware/uni-t-ut32x/protocol.c \
338 src/hardware/uni-t-ut32x/api.c
67bd8055
UH
339endif
340if HW_VICTOR_DMM
341libsigrok_la_SOURCES += \
155b680d
BV
342 src/hardware/victor-dmm/protocol.h \
343 src/hardware/victor-dmm/protocol.c \
344 src/hardware/victor-dmm/api.c
67bd8055 345endif
10763937
SA
346if HW_YOKOGAWA_DLM
347libsigrok_la_SOURCES += \
348 src/hardware/yokogawa-dlm/protocol.h \
349 src/hardware/yokogawa-dlm/protocol.c \
350 src/hardware/yokogawa-dlm/protocol_wrappers.h \
351 src/hardware/yokogawa-dlm/protocol_wrappers.c \
352 src/hardware/yokogawa-dlm/api.c
353endif
67bd8055
UH
354if HW_ZEROPLUS_LOGIC_CUBE
355libsigrok_la_SOURCES += \
155b680d
BV
356 src/hardware/zeroplus-logic-cube/analyzer.c \
357 src/hardware/zeroplus-logic-cube/analyzer.h \
358 src/hardware/zeroplus-logic-cube/gl_usb.h \
359 src/hardware/zeroplus-logic-cube/gl_usb.c \
360 src/hardware/zeroplus-logic-cube/protocol.h \
361 src/hardware/zeroplus-logic-cube/protocol.c \
362 src/hardware/zeroplus-logic-cube/api.c
67bd8055
UH
363endif
364
365libsigrok_la_LIBADD = $(LIBOBJS)
a1bb33af 366
6dddd902 367libsigrok_la_LDFLAGS = $(SR_LIB_LDFLAGS)
eeebceea 368
45c59c8b 369library_includedir = $(includedir)/libsigrok
63d0fb75
ML
370library_include_HEADERS = \
371 include/libsigrok/libsigrok.h \
372 include/libsigrok/proto.h \
373 include/libsigrok/version.h
155b680d 374noinst_HEADERS = src/libsigrok-internal.h
a1bb33af 375
8a7b47cd
UH
376pkgconfigdir = $(libdir)/pkgconfig
377pkgconfig_DATA = libsigrok.pc
d658e348 378
67bd8055
UH
379EXTRA_DIST = \
380 Doxyfile \
381 HACKING \
382 README.devices \
383 contrib/gnuplot_chronovu_la8.gpi \
384 contrib/gnuplot_rigol_ds1xx2.gpi \
385 contrib/gnuplot_usbeesx.gpi \
386 contrib/gnuplot_usbeedx8.gpi \
387 contrib/gnuplot_usbeedx16.gpi \
388 contrib/sigrok-logo-notext.png \
389 contrib/z60_libsigrok.rules
390
391if HAVE_CHECK
392
393TESTS = tests/check_main
394
395check_PROGRAMS = ${TESTS}
396
397tests_check_main_SOURCES = \
6592c369 398 include/libsigrok/libsigrok.h \
67bd8055
UH
399 tests/lib.c \
400 tests/lib.h \
401 tests/check_main.c \
402 tests/check_core.c \
403 tests/check_input_all.c \
404 tests/check_input_binary.c \
405 tests/check_output_all.c \
41723529 406 tests/check_session.c \
67bd8055
UH
407 tests/check_strutil.c \
408 tests/check_version.c \
409 tests/check_driver_all.c
410
411tests_check_main_CFLAGS = @check_CFLAGS@
412
413tests_check_main_LDADD = $(top_builddir)/libsigrok.la @check_LIBS@
414
415endif
dd8b5f56 416
580ed400
ML
417BUILD_EXTRA =
418INSTALL_EXTRA =
419CLEAN_EXTRA =
420
c23c8659
ML
421if BINDINGS_CXX
422
423lib_LTLIBRARIES += bindings/cxx/libsigrokxx.la
424
425bindings_cxx_libsigrokxx_la_SOURCES = bindings/cxx/classes.cpp
426
d1785122 427bindings_cxx_libsigrokxx_la_LIBADD = libsigrok.la $(glibmm_LIBS)
c23c8659
ML
428
429bindings_cxx_libsigrokxx_la_LDFLAGS = $(SR_LIB_LDFLAGS)
430
431library_include_HEADERS += \
432 bindings/cxx/include/libsigrok/libsigrok.hpp \
433 bindings/cxx/include/libsigrok/enums.hpp
434
435pkgconfig_DATA += bindings/cxx/libsigrokxx.pc
436
3532ed01 437doxy/xml/index.xml: include/libsigrok/libsigrok.h
7f82ec4d 438 $(AM_V_GEN)cd $(srcdir) && BUILDDIR=$(abs_builddir)/ doxygen Doxyfile 2>/dev/null
580ed400
ML
439
440bindings/cxx/enums.cpp: bindings/cxx/enums.timestamp
441
442bindings/cxx/include/libsigrok/enums.hpp: bindings/cxx/enums.timestamp
c23c8659 443
3532ed01 444bindings/cxx/enums.timestamp: bindings/cxx/enums.py doxy/xml/index.xml \
c23c8659 445 bindings/cxx/ConfigKey_methods.cpp bindings/cxx/QuantityFlag_methods.cpp
da89e23a 446 $(AM_V_GEN)$(PYTHON) $< doxy/xml/index.xml
f2a189f0 447 $(AM_V_at)touch $@
c23c8659 448
580ed400
ML
449bindings/cxx/classes.lo: bindings/cxx/classes.cpp bindings/cxx/enums.cpp \
450 $(library_include_HEADERS)
c23c8659 451
580ed400 452cxx-clean:
3532ed01 453 rm -rf doxy/
bd4fda24 454 rm -rf bindings/cxx/doxy/
580ed400
ML
455 rm -f bindings/cxx/enums.cpp
456 rm -f bindings/cxx/include/libsigrok/enums.hpp
457 rm -f bindings/cxx/enums.timestamp
c23c8659 458
580ed400
ML
459CLEAN_EXTRA += cxx-clean
460
461endif
f7740954 462
bd4fda24
ML
463CPPXMLDOC = bindings/cxx/doxy/xml/index.xml
464
465$(CPPXMLDOC): bindings/cxx/include/libsigrok/libsigrok.hpp \
466 bindings/cxx/enums.timestamp
33c84e81 467 $(AM_V_GEN)cd $(srcdir)/bindings/cxx && BUILDDIR=$(abs_builddir)/bindings/cxx/ doxygen Doxyfile 2>/dev/null
bd4fda24 468
f7740954
ML
469if BINDINGS_PYTHON
470
d1785122 471PDIR = bindings/python
bd4fda24
ML
472PDOC = bindings/python/sigrok/core/doc.i
473
474$(PDOC): bindings/swig/doc.py $(CPPXMLDOC)
0e1a7fe9 475 $(AM_V_at)test -d $(PDIR)/sigrok/core || mkdir -p $(PDIR)/sigrok/core
da89e23a 476 $(AM_V_GEN)$(PYTHON) $< python $(CPPXMLDOC) > $@
d1785122
ML
477
478python-build: $(PDIR)/timestamp
479
c26162ff 480python-quietclean:
da89e23a 481 $(AM_V_at)cd $(PDIR) && $(PYTHON) $(abs_srcdir)/$(PDIR)/setup.py --quiet clean --all 3>&1 1>&2 2>&3 \
c26162ff 482 | grep -v "can.t clean it"; true
8eb10b62 483
580ed400 484$(PDIR)/timestamp: bindings/cxx/libsigrokxx.la $(PDIR)/sigrok/core/classes.i \
bd4fda24 485 bindings/swig/classes.i $(PDOC) $(library_include_HEADERS)
c26162ff 486 $(AM_V_at)$(MAKE) python-quietclean
da89e23a 487 $(AM_V_GEN)cd $(PDIR) && $(PYTHON) $(abs_srcdir)/$(PDIR)/setup.py --quiet build 3>&1 1>&2 2>&3 \
c26162ff 488 | grep -v "command line option.*Wstrict-prototypes"; true
f2a189f0 489 $(AM_V_at)touch $(PDIR)/timestamp
f7740954
ML
490
491python-install:
da89e23a 492 cd $(PDIR) && $(PYTHON) $(abs_srcdir)/$(PDIR)/setup.py --quiet install --prefix $(prefix)
f7740954 493
c26162ff
BV
494python-clean:
495 $(AM_V_at)$(MAKE) python-quietclean
f2a189f0 496 $(AM_V_at)rm -f $(PDIR)/timestamp
6a8c1d68
ML
497 $(AM_V_at)rm -rf $(PDIR)/doxy/
498
499python-doc:
0e1a7fe9 500 $(AM_V_at)cd $(srcdir)/$(PDIR) && BUILDDIR=$(abs_builddir)/$(PDIR)/ doxygen Doxyfile 2>/dev/null
f7740954
ML
501
502BUILD_EXTRA += python-build
503INSTALL_EXTRA += python-install
504CLEAN_EXTRA += python-clean
505
506endif
507
9fcf4d0b
ML
508if BINDINGS_JAVA
509
510JDIR = bindings/java
90bd7656
ML
511JPKG = org/sigrok/core
512JCLS = $(JDIR)/$(JPKG)/classes
513JINT = $(JDIR)/$(JPKG)/interfaces
33c84e81 514JSRC = $(JCLS)/*.java $(srcdir)/$(JINT)/*.java
90bd7656 515JSWG = $(JCLS)/classes.i
bd4fda24 516JDOC = $(JCLS)/doc.i
90bd7656 517JCXX = $(JCLS)/classes_wrap.cxx
9fcf4d0b
ML
518JLIB = $(JDIR)/libsigrok_java_core_classes.so
519JJAR = $(JDIR)/sigrok-core.jar
520
521java-build: $(JJAR) $(JLIB)
522
bd4fda24 523$(JDOC): bindings/swig/doc.py $(CPPXMLDOC)
33c84e81
MC
524 $(AM_V_at)test -d $(JCLS) || mkdir -p $(JCLS)
525 $(AM_V_GEN)python $< java $(CPPXMLDOC) > $@
bd4fda24
ML
526
527$(JCXX): $(JSWG) $(JDOC) bindings/swig/classes.i $(library_include_HEADERS)
f1830b22 528 $(AM_V_at)make java-clean
f2a189f0 529 $(AM_V_GEN)swig -c++ -java -package org.sigrok.core.classes \
33c84e81 530 -I$(srcdir)/include -I$(srcdir)/bindings/cxx/include -I$(srcdir) -I$(JCLS) -Ibindings/cxx/include -outdir $(JCLS) -o $@ $<
9fcf4d0b 531
90bd7656 532$(JJAR): $(JCXX)
33c84e81 533 $(AM_V_GEN)$(JAVAC) -sourcepath $(JDIR) -d $(JDIR) $(JSRC)
f2a189f0 534 $(AM_V_at)jar cf $(JJAR) -C $(JDIR) $(JPKG)
9fcf4d0b 535
90bd7656 536$(JLIB): $(JCXX) bindings/cxx/libsigrokxx.la $(library_include_HEADERS)
d1a5f737 537 $(AM_V_GEN)$(CXXCOMPILE) -L.libs -Lbindings/cxx/.libs \
90bd7656
ML
538 -fno-strict-aliasing -fPIC -shared $(JCLS)/classes_wrap.cxx \
539 -lsigrokxx -o $(JLIB)
9fcf4d0b
ML
540
541java-install:
542 $(INSTALL) -d $(libdir)/jni
543 $(INSTALL) $(JLIB) -t $(libdir)/jni
544 $(INSTALL) -d $(datadir)/java
545 $(INSTALL) $(JJAR) -t $(datadir)/java
546
547java-clean:
2fe07d3f
BV
548 $(AM_V_at)rm -f $(JCXX)
549 $(AM_V_at)rm -f $(JCLS)/*.java
550 $(AM_V_at)rm -f $(JCLS)/*.class
551 $(AM_V_at)rm -f $(JINT)/*.class
552 $(AM_V_at)rm -f $(JJAR)
553 $(AM_V_at)rm -f $(JLIB)
554 $(AM_V_at)rm -rf $(JDIR)/doxy/
8a314e90
ML
555
556java-doc:
33c84e81 557 $(AM_V_at)cd $(srcdir)/$(JDIR) && BUILDDIR=$(abs_builddir)/$(JDIR)/ doxygen Doxyfile 2>/dev/null
9fcf4d0b
ML
558
559BUILD_EXTRA += java-build
560INSTALL_EXTRA += java-install
561CLEAN_EXTRA += java-clean
562
563endif
564
f7740954
ML
565all-local: $(BUILD_EXTRA)
566install-exec-local: $(INSTALL_EXTRA)
d1785122 567clean-local: $(CLEAN_EXTRA)
f7740954 568
c0958408 569MAINTAINERCLEANFILES = ChangeLog
0fc12d66
UH
570
571.PHONY: ChangeLog
572ChangeLog:
bd58d8f3 573 git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
0fc12d66
UH
574
575dist-hook: ChangeLog
576