1 Star 0 Fork 8

kang jinci/libnxos

forked from BookOS/libnxos 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 644 Bytes
一键复制 编辑 原始数据 按行查看 历史
yanghaku 提交于 2023-08-20 20:34 . feat: add build directory option
##
# Copyright (c) 2018-2022, NXOS Development Team
# SPDX-License-Identifier: Apache-2.0
#
# Contains: Makefile for Source code
#
# Change Logs:
# Date Author Notes
# 2022-1-31 JasonHu Init
##
MAKE :=make
CP :=cp
SDK_DIR := ../sdk
SDK_INC_DIR := $(SDK_DIR)/include
SDK_LIB_DIR := $(SDK_DIR)/lib
LIBNXOS_LIB := ./build/libnxos.a
LIBNXOS_INC_DIR := ./src/include
ifeq ($(O),)
O = $(CURDIR)/build
endif
#
# Cmds
#
.PHONY: all clean
all:
@$(MAKE) -s -C src O=$(O)
clean:
@$(MAKE) -s -C src clean O=$(O)
install:
@$(CP) $(LIBNXOS_LIB) $(SDK_LIB_DIR)
@$(CP) -r $(LIBNXOS_INC_DIR)/* $(SDK_INC_DIR)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/kang-jinci/libnxos.git
git@gitee.com:kang-jinci/libnxos.git
kang-jinci
libnxos
libnxos
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385