mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
This commit is based on the s390-tools-1.39.0 version. Changes on top of s390-tools-1.39.0: - Add MIT license to all source files - Add LICENSE file - Transform REAMDE to README.md (markdown) - Add AUTHORS.md file - Add CONTRIBUTING.md file - Move changelog from README to CHANGELOG.md file Reviewed-by: Stefan Haberland <sth@linux.vnet.ibm.com> Signed-off-by: Michael Holzheu <holzheu@linux.vnet.ibm.com>
31 lines
651 B
Makefile
31 lines
651 B
Makefile
#! /usr/bin/make -f
|
|
|
|
include ../../common.mak
|
|
|
|
|
|
IUCVTERM_DIR = $(SYSCONFDIR)/iucvterm
|
|
CONFIG_FILES = ts-shell.conf unrestricted.conf \
|
|
ts-authorization.conf ts-audit-systems.conf
|
|
|
|
|
|
all:
|
|
check:
|
|
install: $(CONFIG_FILES)
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -d $(DESTDIR)$(IUCVTERM_DIR) ; \
|
|
for cnf in $(CONFIG_FILES); do \
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 $$cnf $(DESTDIR)$(IUCVTERM_DIR) ; \
|
|
done
|
|
|
|
clean:
|
|
-rm -f *.o ts-shell.conf
|
|
|
|
|
|
%: %.in
|
|
my_sysconf=$(IUCVTERM_DIR); \
|
|
cat $< \
|
|
|sed -e "s#@sysconf_path@#$$my_sysconf#g" \
|
|
-e 's#@S390_TOOLS_RELEASE@#$(S390_TOOLS_RELEASE)#g' \
|
|
> $@
|
|
|
|
.PHONY: install clean perl
|