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