From 5237558f9b3750361f597db3342765616d254a1d Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Tue, 3 Aug 2021 11:27:55 -0400 Subject: [PATCH] Add build script as a dependency Related discussion: - https://github.com/gorhill/uBlock/pull/3789#issuecomment-891902206 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d8a42ce42..c86298b44 100644 --- a/Makefile +++ b/Makefile @@ -9,19 +9,19 @@ assets := $(wildcard submodules/uAssets/* \ all: chromium firefox nodejs -dist/build/uBlock0.chromium: $(sources) $(platform) $(assets) +dist/build/uBlock0.chromium: tools/make-chromium.sh $(sources) $(platform) $(assets) tools/make-chromium.sh # Build the extension for Chromium. chromium: dist/build/uBlock0.chromium -dist/build/uBlock0.firefox: $(sources) $(platform) $(assets) +dist/build/uBlock0.firefox: tools/make-firefox.sh $(sources) $(platform) $(assets) tools/make-firefox.sh all # Build the extension for Firefox. firefox: dist/build/uBlock0.firefox -dist/build/uBlock0.nodejs: $(sources) $(platform) $(assets) +dist/build/uBlock0.nodejs: tools/make-nodejs.sh $(sources) $(platform) $(assets) tools/make-nodejs.sh # Build the Node.js package.