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: libsigrokdecode-0.1.0~311 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=0a746957146a36a5450a9918acb511eae95e9a04 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 6ae808f..f2e4eae 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,8 @@ SUBDIRS = decoders -lib_LTLIBRARIES = libsigrokdecode.la +# lib_LTLIBRARIES = libsigrokdecode.la +noinst_LTLIBRARIES = libsigrokdecode.la libsigrokdecode_la_SOURCES = decode.c @@ -28,8 +29,9 @@ libsigrokdecode_la_CPPFLAGS = $(CPPFLAGS_PYTHON) \ -DDECODERS_DIR='"$(DECODERS_DIR)"' libsigrokdecode_la_LDFLAGS = $(LDFLAGS_PYTHON) -include_HEADERS = sigrokdecode.h +# include_HEADERS = sigrokdecode.h +noinst_HEADERS = sigrokdecode.h -pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = libsigrokdecode.pc +# pkgconfigdir = $(libdir)/pkgconfig +# pkgconfig_DATA = libsigrokdecode.pc