hitchhiker-linux.org/Makefile

15 lines
196 B
Makefile
Raw Permalink Normal View History

2021-02-19 22:48:06 -05:00
subdirs += hhl
subdirs += handbook
site.txz: $(subdirs)
cd site && tar -cJf ../$@ *
2021-02-19 22:48:06 -05:00
$(subdirs):
$(MAKE) -C $@
clean:
rm -rf site site.txz
2021-02-19 22:48:06 -05:00
.PHONY: $(subdirs) clean
-include local-targets.mk