weboob-devel/Makefile
Laurent Bachelier 79a90be331 Use a central Makefile
This allows running "make clean", or "make all" without using the
setup.py.
2013-03-02 13:52:14 +01:00

18 lines
375 B
Makefile

core := weboob/tools/application/qt
applications := qboobmsg qhavedate qwebcontentedit qflatboob
ifeq ($(WIN32),)
applications += qvideoob
endif
directories := $(core) $(applications:%=weboob/applications/%/ui)
.PHONY: clean all $(directories)
all: target := all
all: $(directories)
clean: target := clean
clean: $(directories)
$(directories):
$(MAKE) -C $@ $(target)