mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Adds:
* extract_hdr_from_image
a bash script to extract the SE header from an SE image.
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
Acked-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
23 lines
476 B
Makefile
23 lines
476 B
Makefile
# Common definitions
|
|
include ../common.mak
|
|
|
|
.DEFAULT_GOAL := all
|
|
|
|
PKGDATADIR := "$(DESTDIR)$(TOOLS_DATADIR)/pvattest"
|
|
SUBDIRS := src man tools
|
|
RECURSIVE_TARGETS := all-recursive clean-recursive install-recursive
|
|
|
|
all: all-recursive
|
|
|
|
install: all install-recursive
|
|
|
|
clean: clean-recursive
|
|
|
|
$(RECURSIVE_TARGETS):
|
|
@target=`echo $@ |sed s/-recursive//`; \
|
|
for d in $(SUBDIRS); do \
|
|
$(MAKE) -C $$d $$target || exit 1; \
|
|
done
|
|
|
|
.PHONY: all install clean $(RECURSIVE_TARGETS)
|