2021-08-15 21:47:40 +02:00
|
|
|
# https://stackoverflow.com/a/6273809
|
|
|
|
run_options := $(filter-out $@,$(MAKECMDGOALS))
|
|
|
|
|
2022-09-13 23:44:24 +02:00
|
|
|
.PHONY: all clean test lint chromium firefox npm dig mv3 mv3-quick \
|
2021-08-29 14:58:20 +02:00
|
|
|
compare maxcost medcost mincost modifiers record wasm
|
2021-07-31 14:41:28 +02:00
|
|
|
|
2022-09-11 18:19:45 +02:00
|
|
|
sources := $(wildcard assets/resources/* dist/version src/* src/*/* src/*/*/* src/*/*/*/*)
|
2022-09-13 23:44:24 +02:00
|
|
|
platform := $(wildcard platform/* platform/*/* platform/*/*/* platform/*/*/*/*)
|
2022-11-14 15:50:53 +01:00
|
|
|
assets := dist/build/uAssets
|
2021-07-31 14:41:28 +02:00
|
|
|
|
2021-08-15 16:43:36 +02:00
|
|
|
all: chromium firefox npm
|
2021-07-31 14:41:28 +02:00
|
|
|
|
2021-08-03 17:27:55 +02:00
|
|
|
dist/build/uBlock0.chromium: tools/make-chromium.sh $(sources) $(platform) $(assets)
|
2021-07-31 14:41:28 +02:00
|
|
|
tools/make-chromium.sh
|
|
|
|
|
|
|
|
# Build the extension for Chromium.
|
|
|
|
chromium: dist/build/uBlock0.chromium
|
|
|
|
|
2021-08-03 17:27:55 +02:00
|
|
|
dist/build/uBlock0.firefox: tools/make-firefox.sh $(sources) $(platform) $(assets)
|
2021-07-31 14:41:28 +02:00
|
|
|
tools/make-firefox.sh all
|
|
|
|
|
|
|
|
# Build the extension for Firefox.
|
|
|
|
firefox: dist/build/uBlock0.firefox
|
|
|
|
|
2021-08-15 16:43:36 +02:00
|
|
|
dist/build/uBlock0.npm: tools/make-nodejs.sh $(sources) $(platform) $(assets)
|
|
|
|
tools/make-npm.sh
|
2021-07-31 14:41:28 +02:00
|
|
|
|
|
|
|
# Build the Node.js package.
|
2021-08-15 16:43:36 +02:00
|
|
|
npm: dist/build/uBlock0.npm
|
2021-07-31 14:41:28 +02:00
|
|
|
|
2021-08-15 16:43:36 +02:00
|
|
|
lint: npm
|
2021-08-16 18:34:54 +02:00
|
|
|
cd dist/build/uBlock0.npm && npm run lint
|
2021-08-04 20:40:20 +02:00
|
|
|
|
2021-08-15 16:43:36 +02:00
|
|
|
test: npm
|
2021-08-16 18:34:54 +02:00
|
|
|
cd dist/build/uBlock0.npm && npm run test
|
2021-08-15 16:43:36 +02:00
|
|
|
|
2021-08-17 14:55:31 +02:00
|
|
|
test-full-battery: npm
|
|
|
|
cd dist/build/uBlock0.npm && npm run test-full-battery
|
|
|
|
|
2021-08-18 13:28:23 +02:00
|
|
|
check-leaks: npm
|
|
|
|
cd dist/build/uBlock0.npm && npm run check-leaks
|
|
|
|
|
2021-08-15 16:43:36 +02:00
|
|
|
dist/build/uBlock0.dig: tools/make-nodejs.sh $(sources) $(platform) $(assets)
|
|
|
|
tools/make-dig.sh
|
|
|
|
|
|
|
|
dig: dist/build/uBlock0.dig
|
2021-08-15 21:47:40 +02:00
|
|
|
cd dist/build/uBlock0.dig && npm install
|
|
|
|
|
|
|
|
dig-snfe: dig
|
|
|
|
cd dist/build/uBlock0.dig && npm run snfe $(run_options)
|
2021-08-10 19:50:06 +02:00
|
|
|
|
2022-09-07 16:15:36 +02:00
|
|
|
mv3: tools/make-mv3.sh $(sources) $(platform)
|
|
|
|
tools/make-mv3.sh
|
2022-09-06 19:47:52 +02:00
|
|
|
|
2022-09-07 16:15:36 +02:00
|
|
|
mv3-quick: tools/make-mv3.sh $(sources) $(platform)
|
|
|
|
tools/make-mv3.sh quick
|
2022-09-13 23:44:24 +02:00
|
|
|
|
2022-09-07 16:23:40 +02:00
|
|
|
mv3-full: tools/make-mv3.sh $(sources) $(platform)
|
2022-09-08 17:21:39 +02:00
|
|
|
tools/make-mv3.sh full
|
2022-09-06 19:47:52 +02:00
|
|
|
|
2022-11-14 15:50:53 +01:00
|
|
|
dist/build/uAssets:
|
|
|
|
tools/pull-assets.sh
|
2021-07-31 20:50:31 +02:00
|
|
|
|
2021-07-31 14:41:28 +02:00
|
|
|
clean:
|
2021-08-16 17:54:03 +02:00
|
|
|
rm -rf dist/build tmp/node_modules
|
2021-08-15 21:47:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Not real targets, just convenient for auto-completion at shell prompt
|
|
|
|
compare:
|
|
|
|
@echo
|
|
|
|
maxcost:
|
|
|
|
@echo
|
2021-08-29 14:58:20 +02:00
|
|
|
medcost:
|
|
|
|
@echo
|
2021-08-15 21:47:40 +02:00
|
|
|
mincost:
|
|
|
|
@echo
|
2021-08-17 18:48:39 +02:00
|
|
|
modifiers:
|
|
|
|
@echo
|
2021-08-15 21:47:40 +02:00
|
|
|
record:
|
|
|
|
@echo
|
|
|
|
wasm:
|
|
|
|
@echo
|