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>
29 lines
630 B
Makefile
29 lines
630 B
Makefile
AM_CPPFLAGS = -include $(top_builddir)/config.h
|
|
|
|
AM_CFLAGS = -I../proc
|
|
AM_LDFLAGS = ../proc/libproc-ng.la
|
|
|
|
dist_man_MANS = ps.1
|
|
|
|
# Use `ginstall' in the definition of PROGRAMS and in dependencies to avoid
|
|
# confusion with the `install' target. The install rule transforms `ginstall'
|
|
# to install before applying any user-specified name transformations.
|
|
transform = s/pscommand/ps/; $(program_transform_name)
|
|
bin_PROGRAMS = pscommand
|
|
pscommand_SOURCES = \
|
|
common.h \
|
|
display.c \
|
|
global.c \
|
|
help.c \
|
|
output.c \
|
|
parser.c \
|
|
select.c \
|
|
sortformat.c \
|
|
stacktrace.c
|
|
|
|
EXTRA_DIST = \
|
|
HACKING \
|
|
it \
|
|
regression \
|
|
TRANSLATION
|