From: Uwe Hermann Date: Tue, 23 Oct 2012 23:22:49 +0000 (+0200) Subject: new-driver: Standardize on more readable .la filenames. X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=commitdiff_plain;h=6df8539ab5f44e8987720b41c4e8cb930befc974 new-driver: Standardize on more readable .la filenames. Old: libsigrokhwsomedriver_la_CFLAGS New: libsigrok_hw_somedriver_la_CFLAGS --- diff --git a/source/drv-Makefile.am b/source/drv-Makefile.am index d1abe7d..a0bbc80 100644 --- a/source/drv-Makefile.am +++ b/source/drv-Makefile.am @@ -20,14 +20,14 @@ if HW_${upper} # Local lib, this is NOT meant to be installed! -noinst_LTLIBRARIES = libsigrokhw${lib}.la +noinst_LTLIBRARIES = libsigrok_hw_${lib}.la -libsigrokhw${lib}_la_SOURCES = \ +libsigrok_hw_${lib}_la_SOURCES = \ api.c \ protocol.c \ protocol.h -libsigrokhw${lib}_la_CFLAGS = \ +libsigrok_hw_${lib}_la_CFLAGS = \ -I$(top_srcdir) endif