summaryrefslogtreecommitdiff
path: root/Makefile
blob: 2aad9d4bb33482acfbeabad5b473f412ce6364dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

DIRS = vimperator muttator
TARGETS = clean distclean doc help info jar release xpi
.PHONY = tildetidy
.SILENT:

$(TARGETS:%=\%.%):
	echo MAKE $@
	$(MAKE) -C $* $(@:$*.%=%)

$(TARGETS): %: $(DIRS:%=%.%)

tildetidy:
		@echo "Removing vim backup files..."
		find . -name '*~' -exec rm -fv {} \;