From aab765292a04c03bdb7f52b7d9277bd65ec6dc58 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 18 Dec 2019 17:28:23 +1000 Subject: [PATCH] individual build rules need to depend on prereqs --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 68647054e..89491c8d8 100644 --- a/Makefile +++ b/Makefile @@ -69,13 +69,13 @@ REQS := .build/pyrunreqs .build/pydevreqs .build/jsreqs # Building ###################### -BUILDDEPS := $(REQS) .build/ui .build/js +BUILDDEPS := .build/ui .build/js -.build/ui: $(shell find designer -name '*.ui') +.build/ui: $(REQS) $(shell find designer -name '*.ui') ./tools/build_ui.sh touch $@ -.build/js: $(TSDEPS) +.build/js: $(REQS) $(TSDEPS) (cd ts && npm run build) touch $@