mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-08 06:41:58 +00:00
22 lines
437 B
Makefile
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)
|