1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 04:49:12 +02:00
uBlock/Makefile

68 lines
1.6 KiB
Makefile
Raw Normal View History

# https://stackoverflow.com/a/6273809
run_options := $(filter-out $@,$(MAKECMDGOALS))
.PHONY: all clean test lint chromium firefox npm dig \
compare maxcost mincost record wasm
2021-07-31 14:41:28 +02:00
sources := $(wildcard src/* src/*/* src/*/*/* src/*/*/*/*)
platform := $(wildcard platform/* platform/*/*)
assets := $(wildcard submodules/uAssets/* \
submodules/uAssets/*/* \
submodules/uAssets/*/*/* \
submodules/uAssets/*/*/*/*)
all: chromium firefox npm
2021-07-31 14:41:28 +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
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
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.
npm: dist/build/uBlock0.npm
2021-07-31 14:41:28 +02:00
lint: npm
cd dist/build/uBlock0.npm && npm install && npm run lint
test: npm
cd dist/build/uBlock0.npm && npm install && npm run test
dist/build/uBlock0.dig: tools/make-nodejs.sh $(sources) $(platform) $(assets)
tools/make-dig.sh
dig: dist/build/uBlock0.dig
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
2021-07-31 20:50:31 +02:00
# Update submodules.
update-submodules:
tools/update-submodules.sh
2021-07-31 14:41:28 +02:00
clean:
rm -rf dist/build
# Not real targets, just convenient for auto-completion at shell prompt
compare:
@echo
maxcost:
@echo
mincost:
@echo
record:
@echo
wasm:
@echo