Skip to content

Commit

Permalink
Switch to Manifold kernel: no more holes!
Browse files Browse the repository at this point in the history
Fixes #1 and #2
  • Loading branch information
rianadon committed Jun 4, 2023
1 parent b89cfe5 commit cb78a39
Show file tree
Hide file tree
Showing 24 changed files with 1,552 additions and 174 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Clojure
target
.shadow-cljs

# Logs
logs
Expand Down
9 changes: 3 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.PHONY : all build test
build: target/dactyl_webworker.js target/dactyl_node.cjs target/proto/manuform.ts target/proto/lightcycle.ts
build: target/dactyl.js target/proto/manuform.ts target/proto/lightcycle.ts

test:
$(MAKE) -C test
Expand All @@ -12,8 +12,5 @@ target/proto/manuform.ts: src/proto/manuform.proto
target/proto/lightcycle.ts: src/proto/lightcycle.proto
npx protoc --ts_out target --proto_path src $<

target/dactyl_webworker.js: $(shell find src/cljs -type f)
lein cljsbuild once worker

target/dactyl_node.cjs: $(shell find src/cljs -type f)
lein cljsbuild once node
target/dactyl.js: $(shell find src/cljs -type f)
npx shadow-cljs release dactyl
Loading

0 comments on commit cb78a39

Please sign in to comment.