22 lines
450 B
Makefile
22 lines
450 B
Makefile
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
BOARD = qemu_x86
|
|
CONF_FILE = prj.conf
|
|
|
|
export SOURCE_DIR = $(ZEPHYR_BASE)/samples/static_lib/hello_world
|
|
export LDFLAGS_zephyr += -L$(O)/mylib/lib
|
|
export ALL_LIBS += mylib
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.inc
|
|
|
|
all qemu zephyr : all-mylib
|
|
clean pristine mrproper : clean-mylib
|
|
all-mylib: outputexports
|
|
|
|
all-mylib clean-mylib:
|
|
$(MAKE) -C ../mylib O=$(O) $(@:-mylib=)
|