]> sigrok.org Git - libsigrok.git/blob - Makefile.am
72f97969b599c16dd7d086998f7522ae332c2f5f
[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         drivers.c \
35         hwdriver.c \
36         trigger.c \
37         soft-trigger.c \
38         strutil.c \
39         log.c \
40         version.c \
41         error.c \
42         std.c
43
44 # Input formats
45 libsigrok_la_SOURCES += \
46         input/binary.c \
47         input/chronovu_la8.c \
48         input/csv.c \
49         input/input.c \
50         input/vcd.c \
51         input/wav.c
52
53 # Output formats
54 libsigrok_la_SOURCES += \
55         output/output.c \
56         output/analog.c \
57         output/ascii.c \
58         output/bits.c \
59         output/binary.c \
60         output/csv.c \
61         output/chronovu_la8.c \
62         output/gnuplot.c \
63         output/hex.c \
64         output/ols.c \
65         output/vcd.c
66
67 # Hardware (common files)
68 libsigrok_la_SOURCES += \
69         hardware/common/scpi.c \
70         hardware/common/scpi_tcp.c
71 if NEED_RPC
72 libsigrok_la_SOURCES += \
73         hardware/common/scpi_vxi.c \
74         hardware/common/vxi_clnt.c \
75         hardware/common/vxi_xdr.c \
76         hardware/common/vxi.h
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_APPA_55II
111 libsigrok_la_SOURCES += \
112         hardware/appa-55ii/protocol.h \
113         hardware/appa-55ii/protocol.c \
114         hardware/appa-55ii/api.c
115 endif
116 if HW_ASIX_SIGMA
117 libsigrok_la_SOURCES += \
118         hardware/asix-sigma/asix-sigma.h \
119         hardware/asix-sigma/asix-sigma.c
120 endif
121 if HW_ATTEN_PPS3XXX
122 libsigrok_la_SOURCES += \
123         hardware/atten-pps3xxx/protocol.h \
124         hardware/atten-pps3xxx/protocol.c \
125         hardware/atten-pps3xxx/api.c
126 endif
127 if HW_BEAGLELOGIC
128 libsigrok_la_SOURCES += \
129         hardware/beaglelogic/protocol.h \
130         hardware/beaglelogic/protocol.c \
131         hardware/beaglelogic/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_LA
159 libsigrok_la_SOURCES += \
160         hardware/chronovu-la/protocol.h \
161         hardware/chronovu-la/protocol.c \
162         hardware/chronovu-la/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_MANSON_HCS_3XXX
235 libsigrok_la_SOURCES += \
236         hardware/manson-hcs-3xxx/protocol.h \
237         hardware/manson-hcs-3xxx/protocol.c \
238         hardware/manson-hcs-3xxx/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_MOTECH_LPS_30X
247 libsigrok_la_SOURCES += \
248         hardware/motech-lps-30x/protocol.h \
249         hardware/motech-lps-30x/protocol.c \
250         hardware/motech-lps-30x/api.c
251 endif
252 if HW_NORMA_DMM
253 libsigrok_la_SOURCES += \
254         hardware/norma-dmm/protocol.h \
255         hardware/norma-dmm/protocol.c \
256         hardware/norma-dmm/api.c
257 endif
258 if HW_OPENBENCH_LOGIC_SNIFFER
259 libsigrok_la_SOURCES += \
260         hardware/openbench-logic-sniffer/protocol.h \
261         hardware/openbench-logic-sniffer/protocol.c \
262         hardware/openbench-logic-sniffer/api.c
263 endif
264 if HW_RIGOL_DS
265 libsigrok_la_SOURCES += \
266         hardware/rigol-ds/protocol.h \
267         hardware/rigol-ds/protocol.c \
268         hardware/rigol-ds/api.c
269 endif
270 if HW_SALEAE_LOGIC16
271 libsigrok_la_SOURCES += \
272         hardware/saleae-logic16/protocol.h \
273         hardware/saleae-logic16/protocol.c \
274         hardware/saleae-logic16/api.c
275 endif
276 if HW_SERIAL_DMM
277 libsigrok_la_SOURCES += \
278         hardware/serial-dmm/protocol.h \
279         hardware/serial-dmm/protocol.c \
280         hardware/serial-dmm/api.c
281 endif
282 if HW_SYSCLK_LWLA
283 libsigrok_la_SOURCES += \
284         hardware/sysclk-lwla/lwla.h \
285         hardware/sysclk-lwla/lwla.c \
286         hardware/sysclk-lwla/protocol.h \
287         hardware/sysclk-lwla/protocol.c \
288         hardware/sysclk-lwla/api.c
289 endif
290 if HW_TELEINFO
291 libsigrok_la_SOURCES += \
292         hardware/teleinfo/protocol.h \
293         hardware/teleinfo/protocol.c \
294         hardware/teleinfo/api.c
295 endif
296 if HW_TESTO
297 libsigrok_la_SOURCES += \
298         hardware/testo/protocol.h \
299         hardware/testo/protocol.c \
300         hardware/testo/api.c
301 endif
302 if HW_TONDAJ_SL_814
303 libsigrok_la_SOURCES += \
304         hardware/tondaj-sl-814/protocol.h \
305         hardware/tondaj-sl-814/protocol.c \
306         hardware/tondaj-sl-814/api.c
307 endif
308 if HW_UNI_T_DMM
309 libsigrok_la_SOURCES += \
310         hardware/uni-t-dmm/protocol.h \
311         hardware/uni-t-dmm/protocol.c \
312         hardware/uni-t-dmm/api.c
313 endif
314 if HW_UNI_T_UT32X
315 libsigrok_la_SOURCES += \
316         hardware/uni-t-ut32x/protocol.h \
317         hardware/uni-t-ut32x/protocol.c \
318         hardware/uni-t-ut32x/api.c
319 endif
320 if HW_VICTOR_DMM
321 libsigrok_la_SOURCES += \
322         hardware/victor-dmm/protocol.h \
323         hardware/victor-dmm/protocol.c \
324         hardware/victor-dmm/api.c
325 endif
326 if HW_ZEROPLUS_LOGIC_CUBE
327 libsigrok_la_SOURCES += \
328         hardware/zeroplus-logic-cube/analyzer.c \
329         hardware/zeroplus-logic-cube/analyzer.h \
330         hardware/zeroplus-logic-cube/gl_usb.h \
331         hardware/zeroplus-logic-cube/gl_usb.c \
332         hardware/zeroplus-logic-cube/protocol.h \
333         hardware/zeroplus-logic-cube/protocol.c \
334         hardware/zeroplus-logic-cube/api.c
335 endif
336
337 libsigrok_la_LIBADD = $(LIBOBJS)
338
339 libsigrok_la_LDFLAGS = $(SR_LIB_LDFLAGS)
340
341 library_includedir = $(includedir)/libsigrok
342 library_include_HEADERS = \
343         include/libsigrok/libsigrok.h \
344         include/libsigrok/proto.h \
345         include/libsigrok/version.h
346 noinst_HEADERS = libsigrok-internal.h
347
348 pkgconfigdir = $(libdir)/pkgconfig
349 pkgconfig_DATA = libsigrok.pc
350
351 EXTRA_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
363 if HAVE_CHECK
364
365 TESTS = tests/check_main
366
367 check_PROGRAMS = ${TESTS}
368
369 tests_check_main_SOURCES = \
370         include/libsigrok/libsigrok.h \
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
382 tests_check_main_CFLAGS = @check_CFLAGS@
383
384 tests_check_main_LDADD = $(top_builddir)/libsigrok.la @check_LIBS@
385
386 endif
387
388 BUILD_EXTRA =
389 INSTALL_EXTRA =
390 CLEAN_EXTRA =
391
392 if BINDINGS_CXX
393
394 lib_LTLIBRARIES += bindings/cxx/libsigrokxx.la
395
396 bindings_cxx_libsigrokxx_la_SOURCES = bindings/cxx/classes.cpp
397
398 bindings_cxx_libsigrokxx_la_LIBADD = libsigrok.la $(glibmm_LIBS)
399
400 bindings_cxx_libsigrokxx_la_LDFLAGS = $(SR_LIB_LDFLAGS)
401
402 library_include_HEADERS += \
403         bindings/cxx/include/libsigrok/libsigrok.hpp \
404         bindings/cxx/include/libsigrok/enums.hpp
405
406 pkgconfig_DATA += bindings/cxx/libsigrokxx.pc
407
408 bindings/cxx/libsigrok.xml: include/libsigrok/libsigrok.h
409         $(AM_V_GEN)gccxml $(CFLAGS) -DGLIB_DISABLE_DEPRECATION_WARNINGS $< -fxml=$@
410
411 bindings/cxx/enums.cpp: bindings/cxx/enums.timestamp
412
413 bindings/cxx/include/libsigrok/enums.hpp: bindings/cxx/enums.timestamp
414
415 bindings/cxx/enums.timestamp: bindings/cxx/enums.py bindings/cxx/libsigrok.xml \
416                 bindings/cxx/ConfigKey_methods.cpp bindings/cxx/QuantityFlag_methods.cpp
417         $(AM_V_GEN)python $<
418         $(AM_V_at)touch $@
419
420 bindings/cxx/classes.lo: bindings/cxx/classes.cpp bindings/cxx/enums.cpp \
421                 $(library_include_HEADERS)
422
423 cxx-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
428
429 CLEAN_EXTRA += cxx-clean
430
431 endif
432
433 if BINDINGS_PYTHON
434
435 PDIR = bindings/python
436
437 python-build: $(PDIR)/timestamp
438
439 python-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
442
443 $(PDIR)/timestamp: bindings/cxx/libsigrokxx.la $(PDIR)/sigrok/core/classes.i \
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
448         $(AM_V_at)touch $(PDIR)/timestamp
449
450 python-install:
451         cd $(PDIR) && python setup.py --quiet install --prefix $(prefix)
452
453 python-clean:
454         $(AM_V_at)$(MAKE) python-quietclean
455         $(AM_V_at)rm -f $(PDIR)/timestamp
456
457 BUILD_EXTRA += python-build
458 INSTALL_EXTRA += python-install
459 CLEAN_EXTRA += python-clean
460
461 endif
462
463 if BINDINGS_JAVA
464
465 JDIR = bindings/java
466 JPKG = org/sigrok/core/classes
467 JINT = $(JDIR)/$(JPKG)/classes.i
468 JSRC = $(JDIR)/$(JPKG)/classes_wrap.cxx
469 JLIB = $(JDIR)/libsigrok_java_core_classes.so
470 JJAR = $(JDIR)/sigrok-core.jar
471
472 java-build: $(JJAR) $(JLIB)
473
474 $(JSRC): $(JINT) bindings/swig/classes.i $(library_include_HEADERS)
475         $(AM_V_GEN)swig -c++ -java -package org.sigrok.core.classes \
476                 -Iinclude -Ibindings/cxx/include \
477                 -outdir $(JDIR)/$(JPKG) $(JINT)
478
479 $(JJAR): $(JSRC) $(JDIR)/$(JPKG)/*.java
480         $(AM_V_GEN)$(JAVAC) -sourcepath $(JDIR) $(JDIR)/$(JPKG)/*.java
481         $(AM_V_at)jar cf $(JJAR) -C $(JDIR) $(JPKG)
482
483 $(JLIB): $(JSRC) bindings/cxx/libsigrokxx.la $(library_include_HEADERS)
484         $(AM_V_GEN)$(CXX) $(CXXFLAGS) -L.libs -Lbindings/cxx/.libs \
485                 -fno-strict-aliasing -fPIC -shared \
486                 $(JDIR)/$(JPKG)/classes_wrap.cxx -lsigrokxx \
487                 -o $(JLIB)
488
489 java-install:
490         $(INSTALL) -d $(libdir)/jni
491         $(INSTALL) $(JLIB) -t $(libdir)/jni
492         $(INSTALL) -d $(datadir)/java
493         $(INSTALL) $(JJAR) -t $(datadir)/java
494
495 java-clean:
496         rm -f $(JSRC)
497         rm -f $(JDIR)/$(JPKG)/*.class
498         rm -f $(JJAR)
499         rm -f $(JLIB)
500
501 BUILD_EXTRA += java-build
502 INSTALL_EXTRA += java-install
503 CLEAN_EXTRA += java-clean
504
505 endif
506
507 all-local: $(BUILD_EXTRA)
508 install-exec-local: $(INSTALL_EXTRA)
509 clean-local: $(CLEAN_EXTRA)
510
511 MAINTAINERCLEANFILES = ChangeLog
512
513 .PHONY: ChangeLog
514 ChangeLog:
515         git --git-dir $(top_srcdir)/.git log > ChangeLog || touch ChangeLog
516
517 dist-hook: ChangeLog
518