Skip to content

Commit 3dad22c

Browse files
committed
Update makefile with suggestions from CR
1 parent 69582a0 commit 3dad22c

File tree

1 file changed

+26
-22
lines changed

1 file changed

+26
-22
lines changed

solana/Makefile

+26-22
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,41 @@
1-
.PHONY: build
2-
build: _anchor-build target/idl/example_native_token_transfers.json
1+
.DEFAULT_GOAL = build
2+
.PHONY: build test idl sdk clean
33

4-
# remove the generics from the idl file. This is necessary as of anchor 0.29.0, because
5-
# the javascript library does not support generics yet, and just panics
6-
.PHONY: target/idl/example_native_token_transfers.json
7-
target/idl/example_native_token_transfers.json: _anchor-build
8-
@echo "Removing generics from $@"
9-
@ ./scripts/patch-idl $@
4+
#find and convert version line:
5+
# turn `const VERSION: &str = "major.minor.patch";` into `major_minor_patch`
6+
#use make functions to minimize dependence on shell
7+
VERSION = $(subst .,_,$(subst ;,,$(subst ",,$(lastword \
8+
$(shell grep "const VERSION" programs/example-native-token-transfers/src/lib.rs) \
9+
))))
1010

11-
.PHONY: anchor-build
12-
_anchor-build:
13-
@anchor build --arch sbf
11+
# after building, remove the generics from the idl file. This is necessary as of anchor 0.29.0,
12+
# because the javascript library does not support generics yet, and just panics
13+
build:
14+
anchor build --arch sbf
15+
@echo "Removing generics from target/idl/example_native_token_transfers.json"
16+
./scripts/patch-idl target/idl/example_native_token_transfers.json
1417

15-
anchor-test: build idl sdk
18+
19+
test: idl sdk node_modules
1620
anchor test --skip-build
1721

18-
.PHONY: idl
19-
idl: target/idl/example_native_token_transfers.json
20-
$(eval VERSION=$(shell grep "const VERSION" programs/example-native-token-transfers/src/lib.rs | cut -d'"' -f2 | sed 's/\./_/g'))
22+
idl: build
2123
@echo "IDL Version: $(VERSION)"
22-
@ mkdir -p ts/idl/$(VERSION)/json
23-
@ mkdir -p ts/idl/$(VERSION)/ts
24-
@ cp -r target/idl/* ts/idl/$(VERSION)/json/
25-
@for jsonfile in ts/idl/$(VERSION)/json/*.json; do \
26-
tsfile=$$(echo $$jsonfile | sed 's/json\/\(.*\)\.json/ts\/\1.ts/'); \
27-
tsx scripts/regenerateIdl.ts $$jsonfile > $$tsfile; \
24+
mkdir -p ts/idl/$(VERSION)/json
25+
mkdir -p ts/idl/$(VERSION)/ts
26+
cp -r target/idl/* ts/idl/$(VERSION)/json/
27+
for jsonfile in ts/idl/$(VERSION)/json/*.json; do \
28+
tsfile=$$(echo $$jsonfile | sed 's/json\/\(.*\)\.json/ts\/\1.ts/'); \
29+
tsx scripts/regenerateIdl.ts $$jsonfile > $$tsfile; \
2830
done
2931

3032
sdk: build
3133
@echo "Building SDK"
3234
cd .. && npm ci && npm run build:solana
3335

34-
.PHONY: clean
3536
clean:
3637
anchor clean
3738
rm -rf .anchor node_modules
39+
40+
node_modules:
41+
npm install

0 commit comments

Comments
 (0)