rename Makefile -> build.mk to avoid spurious build attempts
rationale: proper build needs to go through setup.py anyhow by renaming Makefile to a less common name, we avoid people building by mistakes only the makefile-driven part. This also helps distribution heuristics when guessing how to auto-build packages (e.g. Debian dh_auto_build)
This commit is contained in:
parent
1161874362
commit
25b2c6df30
2 changed files with 6 additions and 1 deletions
18
Makefile
18
Makefile
|
|
@ -1,18 +0,0 @@
|
|||
core := weboob/tools/application/qt
|
||||
applications := qboobmsg qhavedate qwebcontentedit qflatboob qcineoob qcookboob
|
||||
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue