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.
This commit is contained in:
parent
058b70353d
commit
c70fce6ba6
12
Makefile.am
12
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue