TUTORIAL_EXAMPLES := $(wildcard tutorials/*/.)
TUTORIAL_EXAMPLES_DIRS := $(patsubst tutorials/%/., build/%.tgz, $(TUTORIAL_EXAMPLES))

CV_EXAMPLES := $(wildcard computer_vision/*/.)
CV_EXAMPLES_DIRS := $(patsubst computer_vision/%/., build/%.tgz, $(CV_EXAMPLES))

DEEPSPEED_EXAMPLES := $(wildcard deepspeed/*/.)
DEEPSPEED_EXAMPLES_DIRS := $(patsubst deepspeed/%/., build/%.tgz, $(DEEPSPEED_EXAMPLES))

HF_TRAINER_EXAMPLES := $(wildcard hf_trainer_api/*/.)
HF_TRAINER_EXAMPLES_DIRS := $(patsubst hf_trainer_api/%/., build/%.tgz, $(HF_TRAINER_EXAMPLES))

DIFFUSION_EXAMPLES := $(wildcard diffusion/*/.)
DIFFUSION_EXAMPLES_DIRS := $(patsubst diffusion/%/., build/%.tgz, $(DIFFUSION_EXAMPLES))

FEATURES_EXAMPLES := $(wildcard features/*/.)
FEATURES_EXAMPLES_DIRS := $(patsubst features/%/., build/%.tgz, $(FEATURES_EXAMPLES))


# IGNORE is a `find` subcommand to ignore files that don't affect our outputs.
IGNORE := \( -path ./build -o -path ./tests -o -name __pycache__ -o -name \*.pyc -o -name .mypy_cache \)

# SRCS is a list of all files that could affect our outputs.
SRCS := $(shell find . $(IGNORE) -prune -o -type f -print | sort)

build/stamp: $(TUTORIAL_EXAMPLES_DIRS) $(CV_EXAMPLES_DIRS) $(DEEPSPEED_EXAMPLES_DIRS) $(HF_TRAINER_EXAMPLES_DIRS) $(DIFFUSION_EXAMPLES_DIRS) $(FEATURES_EXAMPLES_DIRS)
	touch $@

.PHONY: build
build: build/stamp

.PHONY: clean
clean:
	find . \( -name __pycache__ -o -name \*.pyc -o -name .mypy_cache \) -print0 | xargs -0 rm -rf
	rm -rf build/

# A quirk of make is that PHONY targets always run, and direct dependencies of
# PHONY targets also always run.  But _their_ dependencies may choose not to
# run.  We use this feature to have the build/manifest target always run, but
# optionally modify its output.  Then the actual .tgz outputs depend on
# build/manifest, and only run when build/manifest decides to modify its output.
.PHONY: phony
phony:

# build/manifest is a file containing all filenames that go into examples.  We
# modify the file whenever the list of filenames changes, enabling us to rebuild
# whenever any files are added or deleted.
build/manifest: phony
	@mkdir -p build
	@if [ ! -e "$@" ] || [ "$$(cat $@)" != "$(SRCS)" ] ; then echo "$(SRCS)" > $@ ; fi

# build/newest is a file that is simply updated whenever any source file is
# updated.  We could also make every target depend on all $(SRCS), but
# that is much less performant.
build/newest: $(SRCS)
	@mkdir -p build
	touch $@

# */%/: just used to define '$<'.
# build/manifest: rebuild if any files are added or deleted.
# build/newest: rebuild if any source files are newer.
build/%.tgz: */%/ build/newest build/manifest
	find "$<" $(IGNORE) -delete
	tar -czf "$@" -C $$(dirname "$<") $$(basename "$<")

fmt:
	black .
	isort .

check:
	black . --check
	isort . --check
