https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 23318c21d1017b4d18a18e176bca08c180908571 authored by Antoine R. Dumont (@ardumont) on 09 July 2020, 08:11:01 UTC
setup: Do no expose the pytest-plugin any longer
Tip revision: 23318c2
Makefile.local
sphinx/html: sql-autodoc images
sphinx/clean: clean-sql-autodoc clean-images
assets: sql-autodoc images

sql-autodoc:
	make -C ../sql/ doc

images:
	make -C images/
clean-images:
	make -C images/ clean

clean: clean-sql-autodoc clean-images
clean-sql-autodoc:
	make -C ../sql/ clean

distclean: clean distclean-sql-autodoc
distclean-sql-autodoc:
	make -C ../sql/ distclean

.PHONY: sql-autodoc clean-sql-autodoc images clean-images


# Local Variables:
# mode: makefile
# End:
back to top