Files
breez-sdk-liquid/Makefile
Ross Savage 423b2a8598 Add contribution guide (#739)
* Add contribution guide

* Apply suggestions from code review

Co-authored-by: Daniel Granhão <32176319+danielgranhao@users.noreply.github.com>

* Clean up generating code section

---------

Co-authored-by: Daniel Granhão <32176319+danielgranhao@users.noreply.github.com>
2025-02-21 06:55:05 +01:00

22 lines
412 B
Makefile

all: fmt codegen clippy
fmt:
cd lib && cargo fmt
cd cli && cargo fmt
clippy:
cd lib && cargo clippy -- -D warnings
cd lib && cargo clippy --tests -- -D warnings
cd cli && cargo clippy -- -D warnings
test:
cd lib && cargo test
codegen: flutter-codegen react-native-codegen
flutter-codegen:
cd lib/bindings/langs/flutter && just gen
react-native-codegen:
make -C ./packages/react-native react-native