Merge pull request #32 from icepic/main
Simplify samples/build.sh by using subshells
This commit is contained in:
commit
50031f56af
|
@ -1,45 +1,24 @@
|
|||
#!/bin/sh
|
||||
cd fractals
|
||||
./build.sh
|
||||
cd ..
|
||||
|
||||
cd games
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd fractals ; ./build.sh )
|
||||
|
||||
cd hires
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd games ; ./build.sh )
|
||||
|
||||
cd hiresmc
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd hires ; ./build.sh )
|
||||
|
||||
cd particles
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd hiresmc ; ./build.sh )
|
||||
|
||||
cd kernalio
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd particles ; ./build.sh )
|
||||
|
||||
cd memmap
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd kernalio ; ./build.sh )
|
||||
|
||||
cd rasterirq
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd memmap ; ./build.sh )
|
||||
|
||||
cd scrolling
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd rasterirq ; ./build.sh )
|
||||
|
||||
cd sprites
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd scrolling ; ./build.sh )
|
||||
|
||||
cd stdio
|
||||
./build.sh
|
||||
cd ..
|
||||
( cd sprites ; ./build.sh )
|
||||
|
||||
( cd stdio ; ./build.sh )
|
||||
|
||||
|
|
Loading…
Reference in New Issue