mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Ship a minimal zipl configuration file at /lib/s390-tools/zipl.conf by default which would help systems using BLS files, without having to create the traditional /etc/zipl.conf file. GitHub-ID: https://github.com/ibm-s390-tools/s390-tools/issues/70 GitHub-ID: https://github.com/ibm-s390-tools/s390-tools/pull/71 Signed-off-by: Tuan Hoang <tmhoang@linux.ibm.com> Signed-off-by: Stefan Haberland <sth@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
16 lines
299 B
Makefile
16 lines
299 B
Makefile
# Common definitions
|
|
include ../common.mak
|
|
|
|
all:
|
|
$(MAKE) -C boot
|
|
$(MAKE) -C src
|
|
|
|
install: all
|
|
$(MAKE) -C src install
|
|
$(MAKE) -C man install
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 doc/zipl.conf.minimal $(DESTDIR)$(TOOLS_LIBDIR)/zipl.conf
|
|
|
|
clean:
|
|
$(MAKE) -C src clean
|
|
$(MAKE) -C boot clean
|