diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2024-07-01 12:14:18 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2024-07-01 12:14:18 +0200 |
commit | 4803b40690df99d361c39a27eaf230ea2e763919 (patch) | |
tree | 6b173e41abea4bec656aa5adfd69a9ce793a3651 | |
parent | 0f69f63f84da07016e2300320385ffb9822bced7 (diff) | |
download | ipxe-tests-master.tar.gz |
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -1,9 +1,19 @@ +DESTDIR ?= +IPXEDIR := $(DESTDIR)/usr/share/ipxe + default: - @echo "targets: test clean" + @echo "targets: test clean install" test: sh test-ipxe.sh clean: rm -f *~ */*~ + +install: + install -d $(IPXEDIR)/tests/{domain,network,scripts} + install -m 644 domain/*.xml $(IPXEDIR)/tests/domain + install -m 644 network/*.xml $(IPXEDIR)/tests/network + install -m 644 scripts/*.ipxe $(IPXEDIR)/tests/scripts + install -m 755 *.sh *.py $(IPXEDIR)/tests |