mirror of
https://github.com/dirtbags/moth.git
synced 2025-01-08 21:11:06 -07:00
9 lines
270 B
Makefile
9 lines
270 B
Makefile
$(eval $(call STANDARD_PUZZLE, sequence))
|
|
|
|
SEQUENCE_SUBMAKES = $(wildcard packages/sequence/*/Makefile)
|
|
SEQUENCE_SUBCLEANS = $(patsubst %/Makefile, %/clean, $(SEQUENCE_SUBMAKES))
|
|
|
|
sequence-clean: $(SEQUENCE_SUBCLEANS)
|
|
|
|
packages/sequence/%/clean:
|
|
$(MAKE) -C $(@D) clean
|