MEMORY=$(shell free | grep "Mem:" |awk '{print $2}')
BUILD_OPTION=$(shell if [ $(MEMORY) -lt 3090252 ]; then echo "-j1"; fi)

LS=$(shell ls)

hello:
	echo $(MEMORY)
show:
	echo $(LS)
