-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added build and clean scripts to simplify release building
Should just require movement of executables into the /bin folder now for things to work
- Loading branch information
1 parent
3017951
commit 61d915f
Showing
40 changed files
with
78 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/fileio/demo_0/bin/FILEIO0.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/fileio/demo_1/bin/FILEIO1.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/fileio/demo_2/bin/FILEIO2.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/fileio/demo_3/bin/FILEIO3.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/fileio/demo_4/bin/FILEIO4.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_0/bin/GRAPHX0.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_1/bin/GRAPHX1.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_10/bin/GRAPHX10.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_2/bin/GRAPHX2.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_3/bin/GRAPHX3.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_4/bin/GRAPHX4.8xp
Binary file not shown.
Binary file modified
BIN
+4 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_5/bin/GRAPHX5.8xp
Binary file not shown.
Binary file modified
BIN
-14 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_6/bin/GRAPHX6.8xp
Binary file not shown.
Binary file modified
BIN
+4 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_7/bin/GRAPHX7.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_8/bin/GRAPHX8.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/graphics/demo_9/bin/GRAPHX9.8xp
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
CEdev/examples/library_examples/keypad/demo_0/bin/KEYPAD0.8xp
Binary file not shown.
Binary file modified
BIN
-5 Bytes
(99%)
CEdev/examples/library_examples/keypad/demo_1/bin/KEYPAD1.8xp
Binary file not shown.
Binary file modified
BIN
-2 Bytes
(100%)
CEdev/examples/library_examples/keypad/demo_2/bin/KEYPAD2.8xp
Binary file not shown.
Binary file modified
BIN
+3 Bytes
(100%)
CEdev/examples/library_examples/keypad/demo_3/bin/KEYPAD3.8xp
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.assume ADL=1 | ||
define .GRAPHX_HEADER,space=ram | ||
define .GRAPHX,space=ram | ||
segment .GRAPHX_HEADER | ||
.assume ADL=1 | ||
db 192,"GRAPHX",0,4 | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@echo off | ||
|
||
REM ---------------------------------------------------- | ||
REM Builds all examples for easy compile testing | ||
REM By Matt "MateoConLechuga" Waltz | ||
REM ---------------------------------------------------- | ||
|
||
echo -- Cleaning examples... | ||
cd /D %CEDEV%\examples | ||
for /D %%a in (demo*) do cd %%a && make && cd .. | ||
cd /D %CEDEV%\examples\library_examples\fileio | ||
for /D %%a in (demo*) do cd %%a && make && cd .. | ||
cd /D %CEDEV%\examples\library_examples\graphics | ||
for /D %%a in (demo*) do cd %%a && make && cd .. | ||
cd /D %CEDEV%\examples\library_examples\keypad | ||
for /D %%a in (demo*) do cd %%a && make && cd .. | ||
cd %CEDEV%\lib\src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
|
||
REM ---------------------------------------------------- | ||
REM Executes cleanup scripts for release | ||
REM By Matt "MateoConLechuga" Waltz | ||
REM ---------------------------------------------------- | ||
|
||
call cleanexamples.bat | ||
call cleanlibs.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@echo off | ||
|
||
REM ---------------------------------------------------- | ||
REM Deletes built examples for release cleanup | ||
REM By Matt "MateoConLechuga" Waltz | ||
REM ---------------------------------------------------- | ||
|
||
echo -- Cleaning examples... | ||
cd /D %CEDEV%\examples | ||
for /D %%a in (demo*) do cd %%a && make clean-leave-executable && cd .. | ||
cd /D %CEDEV%\examples\library_examples\fileio | ||
for /D %%a in (demo*) do cd %%a && make clean-leave-executable && cd .. | ||
cd /D %CEDEV%\examples\library_examples\graphics | ||
for /D %%a in (demo*) do cd %%a && make clean-leave-executable && cd .. | ||
cd /D %CEDEV%\examples\library_examples\keypad | ||
for /D %%a in (demo*) do cd %%a && make clean-leave-executable && cd .. | ||
cd %CEDEV%\lib\src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@echo off | ||
|
||
REM ---------------------------------------------------- | ||
REM Deletes built shared libraries for release cleanup | ||
REM By Matt "MateoConLechuga" Waltz | ||
REM ---------------------------------------------------- | ||
|
||
echo -- Deleting built shared libs... | ||
cd fileio | ||
rmdir /S /Q lib | ||
cd .. | ||
cd keypad | ||
rmdir /S /Q lib | ||
cd .. | ||
cd graphics/graphc | ||
rmdir /S /Q lib | ||
cd ../graphx | ||
rmdir /S /Q lib | ||
cd ../.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
To build all required libraries and files, execute 'buildall.bat'. | ||
|
||
When preparing for a release, execute 'cleanall.bat' |