b7638e7ae9
The library file version string is taken from configure.ac AC_INIT. Reference: http://www.freelists.org/archive/procps/09-2011 Signed-off-by: Jim Warner <james.warner@comcast.net> Signed-off-by: Craig Small <csmall-procps@enc.com.au> Signed-off-by: Sami Kerola <kerolasa@iki.fi>
48 lines
793 B
Makefile
48 lines
793 B
Makefile
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
AM_CPPFLAGS = -include $(top_builddir)/config.h
|
|
lib_LTLIBRARIES = libproc-ng.la
|
|
|
|
libproc_ng_ladir = $(ladir)
|
|
libproc_ng_la_LIBADD = $(LIB_KPARTS)
|
|
libproc_ng_la_LDFLAGS = $(all_libraries) -release $(PACKAGE_VERSION) -no-undefined
|
|
|
|
libproc_ng_la_SOURCES = \
|
|
alloc.c \
|
|
alloc.h \
|
|
devname.c \
|
|
devname.h \
|
|
escape.c \
|
|
escape.h \
|
|
ksym.c \
|
|
procps.h \
|
|
pwcache.c \
|
|
pwcache.h \
|
|
readproc.c \
|
|
readproc.h \
|
|
sig.c \
|
|
sig.h \
|
|
slab.c \
|
|
slab.h \
|
|
sysinfo.c \
|
|
sysinfo.h \
|
|
version.c \
|
|
version.h \
|
|
wchan.h \
|
|
whattime.c \
|
|
whattime.h
|
|
|
|
libproc_ng_la_includedir = $(includedir)/proc/
|
|
libproc_ng_la_include_HEADERS = \
|
|
alloc.h \
|
|
devname.h \
|
|
escape.h \
|
|
procps.h \
|
|
pwcache.h \
|
|
readproc.h \
|
|
sig.h \
|
|
slab.h \
|
|
sysinfo.h \
|
|
version.h \
|
|
wchan.h \
|
|
whattime.h
|