2011-09-22 14:40:05 +05:30
|
|
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
2011-06-04 19:56:58 +05:30
|
|
|
AM_CPPFLAGS = -include $(top_builddir)/config.h
|
|
|
|
|
2011-12-17 17:05:05 +05:30
|
|
|
LIBPROCFS_CURRENT=0
|
|
|
|
LIBPROCFS_REVISION=0
|
|
|
|
LIBPROCFS_AGE=0
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libprocfs.la
|
|
|
|
|
|
|
|
libprocfs_ladir = $(ladir)
|
|
|
|
libprocfs_la_LIBADD = $(LIB_KPARTS)
|
|
|
|
libprocfs_la_LDFLAGS = \
|
2011-11-05 17:59:54 +05:30
|
|
|
$(AM_LDFLAGS) \
|
|
|
|
$(all_libraries) \
|
2011-12-17 17:05:05 +05:30
|
|
|
-version-info $(LIBPROCFS_CURRENT):$(LIBPROCFS_REVISION):$(LIBPROCFS_AGE) \
|
2011-11-05 17:59:54 +05:30
|
|
|
-no-undefined \
|
2011-12-17 17:05:05 +05:30
|
|
|
-Wl,--version-script=$(top_srcdir)/proc/libprocfs.sym
|
2011-06-04 19:56:58 +05:30
|
|
|
|
2011-11-28 19:34:38 +05:30
|
|
|
EXTRA_DIST = library.map
|
|
|
|
|
2011-11-05 18:24:28 +05:30
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2011-12-17 17:05:05 +05:30
|
|
|
pkgconfig_DATA = libprocfs.pc
|
2011-11-05 18:24:28 +05:30
|
|
|
|
2011-12-17 17:05:05 +05:30
|
|
|
libprocfs_la_SOURCES = \
|
2011-06-04 19:56:58 +05:30
|
|
|
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
|
|
|
|
|
2011-12-17 17:05:05 +05:30
|
|
|
libprocfs_la_includedir = $(includedir)/proc/
|
|
|
|
libprocfs_la_include_HEADERS = \
|
2011-06-04 19:56:58 +05:30
|
|
|
alloc.h \
|
|
|
|
devname.h \
|
|
|
|
escape.h \
|
|
|
|
procps.h \
|
|
|
|
pwcache.h \
|
|
|
|
readproc.h \
|
|
|
|
sig.h \
|
|
|
|
slab.h \
|
|
|
|
sysinfo.h \
|
|
|
|
version.h \
|
|
|
|
wchan.h \
|
|
|
|
whattime.h
|