-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (24 loc) · 899 Bytes
/
Copy pathMakefile
File metadata and controls
35 lines (24 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# include .env file and export its env vars
# (-include to ignore error if it does not exist)
-include .env
all: clean install update build
# Install proper solc version.
solc:; nix-env -f https://github.com/dapphub/dapptools/archive/master.tar.gz -iA solc-static-versions.solc_0_8_13
# Clean the repo
clean :; forge clean
# Install the Modules
install :; forge install
# Update Dependencies
update:; forge update
# Builds
build :; forge build
# chmod scripts
scripts :; chmod +x ./scripts/*
# Tests
test :; forge clean && forge test --optimize --optimizer-runs 1000000 -v # --ffi # enable if you need the `ffi` cheat code on HEVM
# Lints
lint :; prettier --write src/**/*.sol && prettier --write src/*.sol
# Generate Gas Snapshots
snapshot :; forge clean && forge snapshot
# Rename all instances of femplate with the new repo name
rename :; chmod +x ./scripts/* && ./scripts/rename.sh