This sample shows how to integrate a static libray into a Zephyr application. A hello_world application and a small library are included. Origin: Original Jira: ZEP-366 Change-Id: Idab38402b47042c3f9369b3a8e433d07d5fa4535 Signed-off-by: Flavio Santes <flavio.santes@intel.com>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
include $(ZEPHYR_BASE)/scripts/Makefile.toolchain.$(ZEPHYR_GCC_VARIANT)
|
|
|
|
# This Makefile is like a replacement of the $(ZEPHYR_BASE)/Makefile
|
|
# for libraries. So, we need to define ARCH here.
|
|
ARCH ?= x86
|
|
|
|
CROSS_COMPILE = $(CROSS_COMPILE_$(ARCH))
|
|
TOOLCHAIN_CFLAGS = $(TOOLCHAIN_CFLAGS_$(ARCH))
|
|
|
|
CC = $(CROSS_COMPILE)gcc
|
|
AR = $(CROSS_COMPILE)ar
|
|
|
|
all:
|
|
mkdir -p obj lib
|
|
$(CC) -c $(TOOLCHAIN_CFLAGS) -Iinclude src/mylib.c -o obj/mylib.o
|
|
$(AR) -rcs lib/libmylib.a obj/mylib.o
|
|
|
|
clean:
|
|
rm -rf obj lib
|
|
|