From: Uwe Hermann Date: Wed, 19 Jan 2011 18:20:44 +0000 (+0100) Subject: Don't install libs and headers in the 0.1 release. X-Git-Tag: libsigrok-0.1.0~404 X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=c70fce6ba6f061f1fbd4dbdf08e5d2ffa0168f6a;hp=058b70353dd462ab13f3badb43f2fea697161bd7;p=libsigrok.git Don't install libs and headers in the 0.1 release. The library APIs are not yet usable or finalized, so don't expose the libs for now. Instead, only install sigrok-cli, the manpages, and the decoders. --- diff --git a/Makefile.am b/Makefile.am index 94672f33..372640ee 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,8 @@ AM_CPPFLAGS = -I $(top_srcdir)/libsigrok \ SUBDIRS = hardware input output -lib_LTLIBRARIES = libsigrok.la +# lib_LTLIBRARIES = libsigrok.la +noinst_LTLIBRARIES = libsigrok.la libsigrok_la_SOURCES = \ backend.c \ @@ -38,9 +39,10 @@ libsigrok_la_LIBADD = \ input/libsigrokinput.la \ output/libsigrokoutput.la -include_HEADERS = sigrok.h sigrok-proto.h -noinst_HEADERS = sigrok-internal.h +# include_HEADERS = sigrok.h sigrok-proto.h +# noinst_HEADERS = sigrok-internal.h +noinst_HEADERS = sigrok.h sigrok-proto.h sigrok-internal.h -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = libsigrok.pc +# pkgconfigdir = $(libdir)/pkgconfig +# pkgconfig_DATA = libsigrok.pc