diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..ebdc570e --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +DIRS = vimperator muttator +TARGETS = clean distclean doc help info jar release xpi +.SILENT: + +$(TARGETS:%=\%.%): + echo MAKE $@ + $(MAKE) -C $* $(@:$*.%=%) + +$(TARGETS): %: $(DIRS:%=%.%) +