mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Closes: https://github.com/ibm-s390-tools/s390-tools/pull/94 Signed-off-by: Dan Horák <dan@danny.cz> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
18 lines
419 B
Makefile
18 lines
419 B
Makefile
# Install the netboot image build scripts as samples
|
|
|
|
include ../common.mak
|
|
|
|
NETBOOT_SAMPLEDIR=$(TOOLS_DATADIR)/netboot
|
|
|
|
all:
|
|
|
|
install: all
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(NETBOOT_SAMPLEDIR)
|
|
$(INSTALL) -m 755 mk-s390image mk-pxelinux-ramfs \
|
|
$(DESTDIR)$(NETBOOT_SAMPLEDIR)
|
|
$(INSTALL) -m 644 Dockerfile Makefile.pxelinux.0 README.md \
|
|
mk-s390image.1 \
|
|
$(DESTDIR)$(NETBOOT_SAMPLEDIR)
|
|
|
|
.PHONY: all install clean
|