Files
Chia-Che Tsai 4f1d69c384 fix for large files within an SGX enclave (#136)
Replacing some "int" in the code base as "int64_t" or "uint64_t".
2018-10-24 11:57:09 -04:00

22 lines
437 B
Makefile

BASH_DIR = bash-4.1
manifests = $(addsuffix .manifest,bash ls cp rm)
exec_target = $(manifests)
level = ../../
include ../../Makefile
$(bash_src): $(BASH_DIR).tar.gz
tar -xmzf $<
$(bash_src)/bash: $(BASH_DIR)
cd $(BASH_DIR) && ./configure --without-gnu-malloc
cd $(BASH_DIR) && $(MAKE) CC="gcc -g"
bash-local: $(BASH_DIR)/bash
cp $< bash-local
distclean: clean-manifests
rm -rf $(bash_src)
rm -rf bash result $(test_targets)