Merge pull request #124 from Patater/full-parent-paths
Makefile: Use full paths to refer to parent files
This commit is contained in:
commit
8907b019e7
1 changed files with 3 additions and 3 deletions
|
@ -92,9 +92,9 @@ OBJS_CRYPTO= aes.o aesni.o arc4.o \
|
|||
# For files generated by the parent project (Mbed TLS) when building Mbed
|
||||
# Crypto as a submodule, ensure that the parent project instance is used.
|
||||
ifeq ($(USE_CRYPTO_SUBMODULE), 1)
|
||||
OBJS_CRYPTO += ../../library/error.o
|
||||
OBJS_CRYPTO += ../../library/version.o
|
||||
OBJS_CRYPTO += ../../library/version_features.o
|
||||
OBJS_CRYPTO += $(patsubst %.c,%.o, $(realpath ../../library/error.c))
|
||||
OBJS_CRYPTO += $(patsubst %.c,%.o, $(realpath ../../library/version.c))
|
||||
OBJS_CRYPTO += $(patsubst %.c,%.o, $(realpath ../../library/version_features.c))
|
||||
else
|
||||
OBJS_CRYPTO += error.o
|
||||
OBJS_CRYPTO += version.o
|
||||
|
|
Loading…
Reference in a new issue