We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47204f4 commit 33fc09cCopy full SHA for 33fc09c
examples/lib/Makefile
@@ -25,8 +25,12 @@ $(info $(shell mkdir -p out))
25
default: pre-build twrlibex.js testex.wasm testex-a.wasm
26
27
pre-build:
28
- $(MAKE) -C ../../source/
29
-
+ @if [ -d "../../source/" ]; then \
+ $(MAKE) -C ../../source/; \
30
+ else \
31
+ echo "Source Directory does not exist. Skipping source build step."; \
32
+ fi
33
+
34
twrlibex.js: index.html twrlibex.ts
35
tsc
36
0 commit comments