Skip to content

Commit

Permalink
Fix more bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvc94ch committed Jul 30, 2018
1 parent 00d241d commit 4e4dbf7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: update-yosys build-yosys all
.PHONY: update-yosys build-yosys build-yosys-napi clean all

all: build-yosys-napi

Expand All @@ -7,9 +7,14 @@ update-yosys:
git submodule foreach git pull origin master

build-yosys: update-yosys
cd yosys-src && echo "ENABLE_LIBYOSYS=1" > Makefile.conf && make
echo "ENABLE_LIBYOSYS=1" > yosys-src/Makefile.conf
echo "ENABLE_TCL=0" >> yosys-src/Makefile.conf
cd yosys-src && make

build-yosys-napi: build-yosys
rm -rf build
node-gyp configure
node-gyp build

clean:
cd yosys-src && make clean
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"files": [
"index.js",
"index.d.js",
"index.d.ts",
"prebuilds"
]
}
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ prebuildify-ci@^1.0.2:

"prebuildify-load@git+https://git@github.com/dvc94ch/prebuildify-load.git":
version "1.0.1"
resolved "git+https://git@github.com/dvc94ch/prebuildify-load.git#a3ab855136e22480bf24cd03c284db6749f0a12d"
resolved "git+https://git@github.com/dvc94ch/prebuildify-load.git#9e66f7d2a1768a6b8efde53aa5fd3940d0adda23"

prebuildify@^2.7.0:
version "2.7.0"
Expand Down

0 comments on commit 4e4dbf7

Please sign in to comment.