blob: 455777c8edc5dc6d3f2420ff1150db289fe51ad4 [file] [log] [blame]
ifndef SRCBASE
SRCBASE = ../..
endif
include ../../Makerules
include Makefile.inc
ifneq ($(findstring x86,$(TARGETARCH)), x86)
DIRS= ${LIB}
else
DIRS= ${LIB} ${CA} ${CLI}
endif
# Make exception for android
ifneq ($(findstring android_ndk,$(TARGETARCH)), )
DIRS= ${LIB}
endif
all:
for i in ${DIRS}; do \
$(MAKE) -C $$i || exit 1; \
done
clean:
for i in ${DIRS}; do \
$(MAKE) -C $$i clean || exit 1; \
done
rm -rf ./dut/x86_mmx ./dut/arm_le
release_bins:
for i in ${DIRS}; do \
$(MAKE) -C $$i release_bins; \
done
.phony: all clean release_bins