commit 9418db7ad7e361e9947e919b8e0dc4968de144ce parent cd56b03b62f735b14f3f9d517762dcdb14ca42a7 Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Sat, 26 Apr 2025 11:09:47 +0200 only recompile gana as make target Diffstat:
| M | Makefile.in | | | 11 | +++++++++++ |
| M | bootstrap | | | 10 | ---------- |
2 files changed, 11 insertions(+), 10 deletions(-)
diff --git a/Makefile.in b/Makefile.in @@ -22,4 +22,15 @@ format: ${GO} fmt ./cmd/mailbox-server/*.go ${GO} fmt ./pkg/rest/*.go +gana: + BUILDDIR=$(pwd) + cd third_party/gana/gnu-taler-error-codes && make taler_error_codes.go + cd ${BUILDDIR} + cp third_party/gana/gnu-taler-error-codes/taler_error_codes.go internal/gana/ + cd third_party/gana/gnunet-signatures && make taler_signatures.go + cd ${BUILDDIR} + cp third_party/gana/gnunet-signatures/taler_signatures.go internal/gana/ + + + .PHONY: all diff --git a/bootstrap b/bootstrap @@ -15,13 +15,3 @@ fi mkdir -p internal/gana git submodule update --init --recursive git submodule sync --recursive -BUILDDIR=$(pwd) -cd third_party/gana/gnu-taler-error-codes && make taler_error_codes.go -cd $BUILDDIR -cp third_party/gana/gnu-taler-error-codes/taler_error_codes.go internal/gana/ - -cd third_party/gana/gnunet-signatures && make taler_signatures.go -cd $BUILDDIR -cp third_party/gana/gnunet-signatures/taler_signatures.go internal/gana/ - -