mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Until recently dumpconf might have been installed in two different locations, /etc/init.d/ and /lib/s390-tools/. As dumpconf is now part of the helper scripts in the scripts directory, extend the installation rule and add the %S390_TOOLS_VERSION% wildcard to the script along the way for correct version output. The installation rule in the systemd/Makefile is removed, bringing it in line with cpictl. Acked-by: Stefan Haberland <sth@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
include ../common.mak
|
|
|
|
SYSTEM_UNITS = ttyrun-getty@.service iucvtty-login@.service \
|
|
cpacfstatsd.service cpuplugd.service \
|
|
dumpconf.service cpi.service \
|
|
mon_fsstatd.service mon_procd.service
|
|
|
|
all:
|
|
|
|
system_units: $(SYSTEM_UNITS)
|
|
|
|
check:
|
|
|
|
ifneq (${SYSTEMDSYSTEMUNITDIR},)
|
|
|
|
install: system_units
|
|
for unit in $(SYSTEM_UNITS); do \
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) \
|
|
-m 644 $$unit $(DESTDIR)$(SYSTEMDSYSTEMUNITDIR) ; \
|
|
done
|
|
|
|
else
|
|
|
|
install:
|
|
|
|
endif
|
|
|
|
clean:
|
|
rm -f $(SYSTEM_UNITS)
|
|
|
|
%: %.in
|
|
real_bin_dir=$(BINDIR); \
|
|
real_usrbin_dir=$(USRBINDIR); \
|
|
real_usrsbin_dir=$(USRSBINDIR); \
|
|
real_toolslib_dir=$(TOOLS_LIBDIR); \
|
|
real_sysconf_dir=$(SYSCONFDIR); \
|
|
$(SED) -e "s#@bin_path@#$$real_bin_dir#g" \
|
|
-e "s#@usrbin_path@#$$real_usrbin_dir#g" \
|
|
-e "s#@usrsbin_path@#$$real_usrsbin_dir#g" \
|
|
-e "s#@toolslib_path@#$$real_toolslib_dir#g" \
|
|
-e "s#@sysconf_path@#$$real_sysconf_dir#g" \
|
|
-e 's#@S390_TOOLS_RELEASE@#$(S390_TOOLS_RELEASE)#g' \
|
|
< $< > $@
|
|
|
|
.PHONY: all check install clean system_units
|