#--*- Makefile -*--

# Clean up *.aux file generated by (La)TeX

TEX_INPUT_FILES = $(wildcard */*.tex)

AUX_FILES = $(notdir ${TEX_INPUT_FILES:%.tex=%.aux})

.PHONY: clean-aux distclean cleanAll

clean-aux:
	rm -f ${AUX_FILES}

distclean cleanAll: clean-aux
