Change ../../libapps paths in TizenRT configuration Makefile (#2429)

This change helps the symlink method to work also with TizenRT/jerryscript configuration, while maintaining the old cp method usability.

JerryScript-DCO-1.0-Signed-off-by: Bela Toth tbela@inf.u-szeged.hu
This commit is contained in:
Tóth Béla 2018-07-18 15:52:50 +02:00 committed by Robert Sipka
parent 9513f3792d
commit 66dddadfd2

View File

@ -103,12 +103,12 @@ ifneq ($(CONFIG_BUILD_KERNEL),y)
endif endif
ifeq ($(CONFIG_WINDOWS_NATIVE),y) ifeq ($(CONFIG_WINDOWS_NATIVE),y)
BIN = ..\..\libapps$(LIBEXT) BIN = $(APPDIR)\libapps$(LIBEXT)
else else
ifeq ($(WINTOOL),y) ifeq ($(WINTOOL),y)
BIN = ..\\..\\libapps$(LIBEXT) BIN = $(APPDIR)\\libapps$(LIBEXT)
else else
BIN = ../../libapps$(LIBEXT) BIN = $(APPDIR)/libapps$(LIBEXT)
endif endif
endif endif