Update Makefile

Added condition for s390 in Makefile
This commit is contained in:
ketank-new 2016-11-10 10:35:35 +05:30 committed by GitHub
parent 8d336e1299
commit 096a33d925

View File

@ -238,6 +238,9 @@ else
ifneq (,$(findstring LJ_TARGET_ARM ,$(TARGET_TESTARCH)))
TARGET_LJARCH= arm
else
ifneq (,$(findstring LJ_TARGET_S390 ,$(TARGET_TESTARCH)))
TARGET_LJARCH= s390
else
ifneq (,$(findstring LJ_TARGET_ARM64 ,$(TARGET_TESTARCH)))
TARGET_LJARCH= arm64
else