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