305b36e5b1
The f23390043bece9f2d4870e5b3a187896e2c7d23f removed few files, which still exist in Makefile.am making `make dist' to fail. This patch fixes the isue. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
27 lines
621 B
Makefile
27 lines
621 B
Makefile
AM_CPPFLAGS = -include $(top_builddir)/config.h
|
|
|
|
AM_CFLAGS = -I../proc -I../include
|
|
AM_LDFLAGS = ../proc/libprocfs.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 \
|
|
regression
|