Add linux script to build samples
This commit is contained in:
parent
66807c2374
commit
b5ef25ad30
|
@ -0,0 +1,33 @@
|
||||||
|
#!/bin/sh
|
||||||
|
cd fractals
|
||||||
|
./build.sh
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
cd hires
|
||||||
|
./build.sh
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
cd kernalio
|
||||||
|
./build.sh
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
cd memmap
|
||||||
|
./build.sh
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
cd rasterirq
|
||||||
|
./build.sh
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
cd scrolling
|
||||||
|
./build.sh
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
cd sprites
|
||||||
|
./build.sh
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
cd stdio
|
||||||
|
./build.sh
|
||||||
|
cd ..
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
../../bin/oscar64 mbtext.c -n
|
||||||
|
../../bin/oscar64 mbhires.c -n
|
||||||
|
../../bin/oscar64 mbmulti.c -n
|
||||||
|
../../bin/oscar64 mbmulti3d.c -n
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
../../bin/oscar64 splitscreen.c
|
||||||
|
../../bin/oscar64 func3d.c -n
|
||||||
|
../../bin/oscar64 lines.c -n
|
||||||
|
../../bin/oscar64 polygon.c -n
|
||||||
|
../../bin/oscar64 bitblit.c -n
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
../../bin/oscar64 diskdir.c
|
||||||
|
../../bin/oscar64 filewrite.c
|
||||||
|
../../bin/oscar64 fileread.c
|
||||||
|
../../bin/oscar64 charwrite.c
|
||||||
|
../../bin/oscar64 charread.c
|
||||||
|
../../bin/oscar64 hireswrite.c
|
||||||
|
../../bin/oscar64 hiresread.c
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
../../bin/oscar64 largemem.c
|
||||||
|
../../bin/oscar64 allmem.c
|
||||||
|
../../bin/oscar64 charsetlo.c
|
||||||
|
../../bin/oscar64 charsethi.c
|
||||||
|
../../bin/oscar64 charsetcopy.c
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
../../bin/oscar64 colorbars.c
|
||||||
|
../../bin/oscar64 openborder.c
|
||||||
|
../../bin/oscar64 textcrawler.c
|
||||||
|
../../bin/oscar64 movingbars.c -n
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
../../bin/oscar64 bigfont.c -n
|
||||||
|
../../bin/oscar64 tunnel.c -n
|
||||||
|
../../bin/oscar64 grid2d.c -n
|
||||||
|
../../bin/oscar64 colorram.c -n
|
||||||
|
../../bin/oscar64 cgrid8way.c -n
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
../../bin/oscar64 joycontrol.c
|
||||||
|
../../bin/oscar64 multiplexer.c -n
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
../../bin/oscar64 helloworld.c
|
Loading…
Reference in New Issue