3f42de1432
The file became necessary in
commit 901e381256
Signed-off-by: Sami Kerola <sami.kerola@tomtom.com>
58 lines
967 B
Makefile
58 lines
967 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 = \
|
|
$(AM_LDFLAGS) \
|
|
$(all_libraries) \
|
|
-release $(PACKAGE_VERSION) \
|
|
-no-undefined \
|
|
-Wl,--version-script=$(top_srcdir)/proc/library.map
|
|
|
|
EXTRA_DIST = library.map
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libproc-ng.pc
|
|
|
|
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
|