all: configure src/Makefile doc/Makefile src/wnews doc/wnews.1.gz configure: @echo "Please run ./autogen.sh..." @false src/Makefile doc/Makefile: configure @echo "Please run ./configure..." @false src/wnews doc/wnews.1.gz: @echo "==> Building wnews..." make -C src all @echo "==> Building wnews documentation..." make -C doc all install: src/wnews doc/wnews.1.gz @echo "==> Installing wnews..." make -C src install make -C doc install uninstall: make -C src uninstall make -C doc uninstall clean: make -C src clean make -C doc clean