X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=Makefile.am;h=8eb3d7a5ffc535e08f97fb53de3bd274164848a9;hb=4ea012bdf543a0daff4acf4bdc27caff514903e8;hp=2e111e9341ef9953ce59c7577265a10b39d4d9db;hpb=4c660b46c11f8a84941194f60e4f48e57b0a86b7;p=libsigrok.git diff --git a/Makefile.am b/Makefile.am index 2e111e93..8eb3d7a5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -50,7 +50,9 @@ lib_LTLIBRARIES = libsigrok.la # Backend files libsigrok_la_SOURCES = \ src/backend.c \ + src/binary_helpers.c \ src/conversion.c \ + src/crc.c \ src/device.c \ src/session.c \ src/session_file.c \ @@ -513,6 +515,12 @@ src_libdrivers_la_SOURCES += \ src/hardware/rdtech-dps/protocol.c \ src/hardware/rdtech-dps/api.c endif +if HW_RDTECH_UM +src_libdrivers_la_SOURCES += \ + src/hardware/rdtech-um/protocol.h \ + src/hardware/rdtech-um/protocol.c \ + src/hardware/rdtech-um/api.c +endif if HW_RIGOL_DS src_libdrivers_la_SOURCES += \ src/hardware/rigol-ds/protocol.h \ @@ -608,6 +616,12 @@ src_libdrivers_la_SOURCES += \ src/hardware/uni-t-dmm/protocol.c \ src/hardware/uni-t-dmm/api.c endif +if HW_UNI_T_UT181A +src_libdrivers_la_SOURCES += \ + src/hardware/uni-t-ut181a/protocol.h \ + src/hardware/uni-t-ut181a/protocol.c \ + src/hardware/uni-t-ut181a/api.c +endif if HW_UNI_T_UT32X src_libdrivers_la_SOURCES += \ src/hardware/uni-t-ut32x/protocol.h \ @@ -715,7 +729,8 @@ tests_main_SOURCES = \ tests/driver_all.c \ tests/device.c \ tests/trigger.c \ - tests/analog.c + tests/analog.c \ + tests/conv.c tests_main_LDADD = libsigrok.la $(SR_EXTRA_LIBS) $(TESTS_LIBS)