Skip to content

Commit

Permalink
Add Makefile to include kirk inside LTP
Browse files Browse the repository at this point in the history
  • Loading branch information
acerv committed Sep 15, 2023
1 parent 0992f72 commit 805c56c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (c) 2023 SUSE LLC <[email protected]>
#
# Install script for Linux Testing Project

top_srcdir ?= ../..

include $(top_srcdir)/include/mk/env_pre.mk

BASE_DIR := $(abspath $(DESTDIR)/$(prefix))

install:
mkdir -p $(BASE_DIR)/libkirk

install -m 00644 $(top_srcdir)/tools/kirk/libkirk/*.py $(BASE_DIR)/libkirk
install -m 00775 $(top_srcdir)/tools/kirk/kirk $(BASE_DIR)/kirk

include $(top_srcdir)/include/mk/generic_leaf_target.mk

0 comments on commit 805c56c

Please sign in to comment.