Skip to content

Commit 5e20dcf

Browse files
committed
examples/embedding: Remove obsolete axtls build target.
axtls is now built as part of the standard make process, using rules in extmod/extmod.mk. Signed-off-by: Damien George <damien@micropython.org>
1 parent b89422c commit 5e20dcf

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

examples/embedding/Makefile.upylib

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ else
172172
CROSS_COMPILE_HOST =
173173
endif
174174

175-
deplibs: libffi axtls
175+
deplibs: libffi
176176

177177
# install-exec-recursive & install-data-am targets are used to avoid building
178178
# docs and depending on makeinfo
@@ -182,13 +182,3 @@ libffi:
182182
mkdir -p $(MPTOP)/lib/libffi/build_dir; cd $(MPTOP)/lib/libffi/build_dir; \
183183
../configure $(CROSS_COMPILE_HOST) --prefix=$$PWD/out CC="$(CC)" CXX="$(CXX)" LD="$(LD)"; \
184184
make install-exec-recursive; make -C include install-data-am
185-
186-
axtls: $(MPTOP)/lib/axtls/README
187-
cd $(MPTOP)/lib/axtls; cp config/upyconfig config/.config
188-
cd $(MPTOP)/lib/axtls; make oldconfig -B
189-
cd $(MPTOP)/lib/axtls; make clean
190-
cd $(MPTOP)/lib/axtls; make all CC="$(CC)" LD="$(LD)"
191-
192-
$(MPTOP)/lib/axtls/README:
193-
@echo "You cloned without --recursive, fetching submodules for you."
194-
(cd $(MPTOP); git submodule update --init --recursive)

0 commit comments

Comments
 (0)