mirror of https://github.com/gorhill/uBlock.git
Add build script as a dependency
Related discussion: - https://github.com/gorhill/uBlock/pull/3789#issuecomment-891902206
This commit is contained in:
parent
6ef74fc21b
commit
5237558f9b
6
Makefile
6
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.
|
||||
|
|
Loading…
Reference in New Issue