mirror of
https://github.com/namecoin/ncdns-repro
synced 2024-11-12 01:10:26 +00:00
46c7410c9f
Also update Makefile and rbm.conf to sync with upstream changes
74 lines
3.2 KiB
Makefile
74 lines
3.2 KiB
Makefile
rbm=./rbm/rbm
|
|
|
|
all: release
|
|
|
|
# TODO: Replace the Makefile-based metatarget with an rbm-based one.
|
|
release: submodule-update release-linux-x86_64 release-linux-i686 release-windows-x86_64 release-windows-i686 release-osx-x86_64
|
|
#$(rbm) build ncdns --target release --target ncdns-all
|
|
|
|
release-android-armv7: submodule-update
|
|
$(rbm) build ncdns --target release --target ncdns-android-armv7
|
|
|
|
release-android-x86: submodule-update
|
|
$(rbm) build ncdns --target release --target ncdns-android-x86
|
|
|
|
release-android-x86_64: submodule-update
|
|
$(rbm) build ncdns --target release --target ncdns-android-x86_64
|
|
|
|
release-android-aarch64: submodule-update
|
|
$(rbm) build ncdns --target release --target ncdns-android-aarch64
|
|
|
|
release-linux-x86_64: submodule-update
|
|
$(rbm) build certdehydrate-dane-rest-api --target release --target ncdns-linux-x86_64
|
|
$(rbm) build dnssec-hsts --target release --target ncdns-linux-x86_64
|
|
$(rbm) build dnssec-hsts-native --target release --target ncdns-linux-x86_64
|
|
$(rbm) build ncdns --target release --target ncdns-linux-x86_64
|
|
$(rbm) build ncp11 --target release --target ncdns-linux-x86_64
|
|
$(rbm) build ncprop279 --target release --target ncdns-linux-x86_64
|
|
|
|
release-linux-i686: submodule-update
|
|
$(rbm) build certdehydrate-dane-rest-api --target release --target ncdns-linux-i686
|
|
$(rbm) build dnssec-hsts --target release --target ncdns-linux-i686
|
|
$(rbm) build dnssec-hsts-native --target release --target ncdns-linux-i686
|
|
$(rbm) build ncdns --target release --target ncdns-linux-i686
|
|
$(rbm) build ncp11 --target release --target ncdns-linux-i686
|
|
$(rbm) build ncprop279 --target release --target ncdns-linux-i686
|
|
|
|
release-windows-i686: submodule-update
|
|
$(rbm) build certdehydrate-dane-rest-api --target release --target ncdns-windows-i686
|
|
$(rbm) build dnssec-hsts --target release --target ncdns-windows-i686
|
|
$(rbm) build dnssec-hsts-native --target release --target ncdns-windows-i686
|
|
$(rbm) build ncdns --target release --target ncdns-windows-i686
|
|
$(rbm) build ncp11 --target release --target ncdns-windows-i686
|
|
$(rbm) build ncprop279 --target release --target ncdns-windows-i686
|
|
|
|
release-windows-x86_64: submodule-update
|
|
$(rbm) build certdehydrate-dane-rest-api --target release --target ncdns-windows-x86_64
|
|
$(rbm) build dnssec-hsts --target release --target ncdns-windows-x86_64
|
|
$(rbm) build dnssec-hsts-native --target release --target ncdns-windows-x86_64
|
|
$(rbm) build ncdns --target release --target ncdns-windows-x86_64
|
|
$(rbm) build ncp11 --target release --target ncdns-windows-x86_64
|
|
$(rbm) build ncprop279 --target release --target ncdns-windows-x86_64
|
|
|
|
release-osx-x86_64: submodule-update
|
|
$(rbm) build certdehydrate-dane-rest-api --target release --target ncdns-osx-x86_64
|
|
$(rbm) build dnssec-hsts --target release --target ncdns-osx-x86_64
|
|
$(rbm) build dnssec-hsts-native --target release --target ncdns-osx-x86_64
|
|
$(rbm) build ncdns --target release --target ncdns-osx-x86_64
|
|
$(rbm) build ncp11 --target release --target ncdns-osx-x86_64
|
|
$(rbm) build ncprop279 --target release --target ncdns-osx-x86_64
|
|
|
|
submodule-update:
|
|
git submodule update --init
|
|
$(MAKE) -C tor-browser-build submodule-update
|
|
|
|
fetch: submodule-update
|
|
$(rbm) fetch
|
|
|
|
clean: submodule-update
|
|
./tools/clean-old
|
|
|
|
clean-dry-run: submodule-update
|
|
./tools/clean-old --dry-run
|
|
|