Commit2f183e5introduced the script iprsos, but the latter commitdd58951, which inserts autotools, won't install it. This patch adds iprsos and iprsos.8 to the makefile.am, so autotools can correctly build and install iprsos. Signed-off-by: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com> Signed-off-by: Brian King <Brian King brking@linux.vnet.ibm.com>
35 lines
867 B
Makefile
35 lines
867 B
Makefile
# IBM IPR adapter configuration utility
|
|
#
|
|
# (C) Copyright 2015
|
|
# International Business Machines Corporation and others.
|
|
# All Rights Reserved. This program and the accompanying
|
|
# materials are made available under the terms of the
|
|
# Common Public License v1.0 which accompanies this distribution.
|
|
#
|
|
|
|
lib_LTLIBRARIES = libipr.la
|
|
libipr_la_SOURCES = iprlib.c
|
|
include_HEADERS = iprlib.h
|
|
|
|
sbin_PROGRAMS = iprconfig iprdump iprupdate iprinit iprdbg
|
|
dist_sbin_SCRIPTS = iprsos
|
|
|
|
iprconfig_SOURCES = iprconfig.c iprconfig.h
|
|
iprconfig_LDADD= libipr.la
|
|
|
|
iprdump_SOURCES = iprdump.c
|
|
iprdump_LDADD= libipr.la
|
|
|
|
iprupdate_SOURCES = iprupdate.c
|
|
iprupdate_LDADD= libipr.la
|
|
|
|
iprinit_SOURCES = iprinit.c
|
|
iprinit_LDADD= libipr.la
|
|
|
|
iprdbg_SOURCES = iprdbg.c
|
|
iprdbg_LDADD= libipr.la
|
|
|
|
dist_man_MANS = iprconfig.8 iprdump.8 iprinit.8 iprupdate.8 iprsos.8
|
|
|
|
SUBDIRS = . systemd init.d spec
|
|
|