File tree Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ source/twr-gcc-unit-test/a.exe
33source /out /
44examples /.parcel-cache /
55examples /dist /**
6+ examples /** /out /
67examples /** /* .o
78examples /** /* .bc
89examples /** /* .js
@@ -14,5 +15,3 @@ lib-c/twr.a
1415lib-c /twrd.a
1516lib-js /
1617azure /
17- examples /lib /out /*
18- examples /pong /out /*
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ TWRCFLAGS := --target=wasm32 -nostdinc -nostdlib -isystem ../../include
1818CFLAGS := -c -Wall -O3 $(TWRCFLAGS )
1919CFLAGS_DEBUG := -c -Wall -g -O0 $(TWRCFLAGS )
2020
21+ $(info $(shell mkdir -p out))
22+
2123.PHONY : pre-build default
2224
2325default : pre-build twrlibex.js testex.wasm testex-a.wasm
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ CPPLIB := ../twr-cpp
44CFLAGS := -c -Wall -O3 $(TWRCFLAGS ) -I $(CPPLIB )
55CFLAGS_DEBUG := -c -Wall -g -O0 $(TWRCFLAGS ) -I $(CPPLIB )
66
7-
7+ $(info $(shell mkdir -p out))
88
99.PHONY : default
1010
@@ -29,4 +29,5 @@ tests-audio-a.wasm: tests-audio-a.o
2929
3030clean :
3131 rm -f * .o
32- rm -f * .wasm
32+ rm -f * .wasm
33+ rm -f out/*
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1414 " walkthrough" ,
1515 " api" ,
1616 " canvas" ,
17+ " audio" ,
1718 " 2d" ,
1819 " draw" ,
1920 " example" ,
4041 " ./examples/*/*.h" ,
4142 " ./examples/*/*.ts" ,
4243 " ./examples/*/*.js" ,
44+ " ./examples/*/out/*.js" ,
4345 " ./examples/*/*.txt" ,
4446 " ./examples/*/*.wasm" ,
4547 " ./examples/*/package.json" ,
You can’t perform that action at this time.
0 commit comments