Skip to content
Snippets Groups Projects
Unverified Commit da3c075d authored by cladmi's avatar cladmi Committed by Gaëtan Harter
Browse files

pkg/jerryscript: update rules

Remove unknown rules from .PHONY.
Make 'all' be the default target for jerryscript and execute `all` target.
This way no definition order issue could happen in the future.
parent b7aa55b7
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,6 @@ endif ...@@ -14,6 +14,6 @@ endif
all: git-download all: git-download
@cp Makefile.jerryscript $(PKG_BUILDDIR)/Makefile @cp Makefile.jerryscript $(PKG_BUILDDIR)/Makefile
"$(MAKE)" -C $(PKG_BUILDDIR) "$(MAKE)" -C $(PKG_BUILDDIR) all
include $(RIOTBASE)/pkg/pkg.mk include $(RIOTBASE)/pkg/pkg.mk
...@@ -8,9 +8,9 @@ ifeq ($(TOOLCHAIN)_$(BOARD),llvm_native) ...@@ -8,9 +8,9 @@ ifeq ($(TOOLCHAIN)_$(BOARD),llvm_native)
EXT_CFLAGS :=-D__TARGET_RIOT -Wno-conversion EXT_CFLAGS :=-D__TARGET_RIOT -Wno-conversion
endif endif
.PHONY: libjerry riot-jerry flash clean .PHONY: all libjerry
# all: libjerry riot-jerry all: libjerry
libjerry: libjerry:
mkdir -p $(BUILD_DIR) mkdir -p $(BUILD_DIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment