Adding upstream version 1.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
809e3412a9
commit
336fe81026
743 changed files with 51081 additions and 0 deletions
43
Makefile
Normal file
43
Makefile
Normal file
|
@ -0,0 +1,43 @@
|
|||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||
#
|
||||
# This file is part of libnvme.
|
||||
# Copyright (c) 2021 Dell Inc.
|
||||
#
|
||||
# Authors: Martin Belanger <Martin.Belanger@dell.com>
|
||||
#
|
||||
NAME := libnvme
|
||||
.DEFAULT_GOAL := ${NAME}
|
||||
BUILD-DIR := .build
|
||||
|
||||
${BUILD-DIR}:
|
||||
meson $@
|
||||
@echo "Configuration located in: $@"
|
||||
@echo "-------------------------------------------------------"
|
||||
|
||||
.PHONY: ${NAME}
|
||||
${NAME}: ${BUILD-DIR}
|
||||
ninja -C ${BUILD-DIR}
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
ifneq ("$(wildcard ${BUILD-DIR})","")
|
||||
ninja -C ${BUILD-DIR} -t $@
|
||||
endif
|
||||
|
||||
.PHONY: purge
|
||||
purge:
|
||||
ifneq ("$(wildcard ${BUILD-DIR})","")
|
||||
rm -rf ${BUILD-DIR}
|
||||
endif
|
||||
|
||||
.PHONY: install dist
|
||||
install dist: ${BUILD-DIR}
|
||||
cd ${BUILD-DIR} && meson $@
|
||||
|
||||
.PHONY: test
|
||||
test: ${BUILD-DIR}
|
||||
ninja -C ${BUILD-DIR} $@
|
||||
|
||||
.PHONY: rpm
|
||||
rpm: dist
|
||||
rpmbuild -ba ${BUILD-DIR}/libnvme.spec
|
Loading…
Add table
Add a link
Reference in a new issue