From 35275cccc7382c971f9e0b0b7837392bc80aaa16 Mon Sep 17 00:00:00 2001 From: snsd0805 Date: Sat, 27 Apr 2024 22:16:38 +0800 Subject: [PATCH] fix: makefile (add abi\) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 0617630..eef1f39 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,8 @@ all: out/Scheduler.sol abi/Scheduler.abi out/Scheduler.sol: src/Scheduler.sol forge build + +abi/Scheduler.abi: src/Scheduler.sol solc --abi src/Scheduler.sol -o abi clean: