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
3
3
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
+ ) ) ) )
10
10
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
14
17
15
- anchor-test : build idl sdk
18
+
19
+ test : idl sdk node_modules
16
20
anchor test --skip-build
17
21
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
21
23
@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; \
28
30
done
29
31
30
32
sdk : build
31
33
@echo " Building SDK"
32
34
cd .. && npm ci && npm run build:solana
33
35
34
- .PHONY : clean
35
36
clean :
36
37
anchor clean
37
38
rm -rf .anchor node_modules
39
+
40
+ node_modules :
41
+ npm install
0 commit comments