05/09/2017 22:51, luca.bocca...@gmail.com: > .PHONY: install > +ifeq ($(SYMLINK-FILES-y),) > install: build _postinstall > +else > +install: _preinstall build _postinstall > +endif
I think you cannot be sure that "_preinstall" will be finished before the "build" target starts in parallel make. Am I missing something?