Skip to content

Commit

Permalink
makefile: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tynes committed Jun 26, 2023
1 parent 9b16d36 commit f4b476b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions op-bindings/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL := /bin/bash

pkg := bindings

all: version mkdir bindings more
all: version mkdir bindings

version:
forge --version
Expand All @@ -19,13 +19,13 @@ bindings: compile
-out ./bindings \
-contracts ./artifacts.json \
-source-maps MIPS,PreimageOracle \
-package bindings
-package $(pkg)

mkdir:
mkdir -p bin $(pkg)
mkdir -p $(pkg)

clean:
rm -rf bin $(pkg)
rm -rf $(pkg)

test:
go test ./...

0 comments on commit f4b476b

Please sign in to comment.