-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ilu
committed
Nov 12, 2021
1 parent
0ec83f3
commit 70ac969
Showing
53 changed files
with
12,320 additions
and
146 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
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
Begin3 | ||
Title: DOjS | ||
Version: 1.6.0 | ||
Version: 1.7.0 | ||
Entered-date: 2021-01-22 | ||
Description: A DOS JavaScript Canvas with sound | ||
Summary: DOjS is a JavaScript-able canvas with WAV and MIDI sound support. DOjS runs in Dosbox and on real hardware or a virtual machine with MS-DOS, FreeDOS or any DOS based Windows like Windows 95/98/ME. If you run it on real hardware you need at least a 80386 with 4MB. I recommend a Pentium class machine (>= 100MHz) with at least 32MB RAM. | ||
Changes: V1.6 release | ||
Changes: V1.7.0 added MPEG1/FLIC playback and live coding | ||
Keywords: java, JavaScript | ||
Author: SuperIlu | ||
Maintained-by: SuperIlu | ||
Primary-site: https://github.com/SuperIlu/DOjS | ||
Original-site: https://github.com/SuperIlu/DOjS | ||
Platforms: DOS | ||
Copying-policy: Various Licenses, See LICENSE file | ||
Modified-date: 2021-08-29 | ||
Modified-date: 2021-11-12 | ||
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 |
---|---|---|
|
@@ -86,6 +86,7 @@ PARTS= \ | |
$(BUILDDIR)/edit.o \ | ||
$(BUILDDIR)/file.o \ | ||
$(BUILDDIR)/font.o \ | ||
$(BUILDDIR)/flic.o \ | ||
$(BUILDDIR)/funcs.o \ | ||
$(BUILDDIR)/lowlevel.o \ | ||
$(BUILDDIR)/gfx.o \ | ||
|
@@ -177,19 +178,23 @@ TEXUS.EXE: | |
$(MAKE) -C $(TEXUS) clean all | ||
cp $(TEXUS)/TEXUS.EXE . | ||
|
||
exstream: liballegro | ||
$(CC) $(CFLAGS) -c $(ALLEGRO)/examples/exstream.c -o exstream.o | ||
$(CC) $(LDFLAGS) -o extream.exe exstream.o $(LIBS) | ||
|
||
zip: all doc | ||
rm -f $(RELZIP) | ||
rm -f dxetest.DXE dxetest2.DXE | ||
curl --remote-name --time-cond cacert.pem https://curl.se/ca/cacert.pem | ||
cp $(GLIDE)/v1/lib/glide3x.dxe ./GLIDE3X.DXE | ||
zip -9 -r $(RELZIP) $(EXE) WATTCP.CFG GLIDE3X.DXE CWSDPMI.EXE LICENSE *.md JSBOOT.ZIP examples/ $(DOCDIR) $(GLIDE)/*/lib/glide3x.dxe V_*.BAT TEXUS.EXE cacert.pem *.DXE | ||
|
||
devzip: all doc $(RELZIP) | ||
devzip: all doc | ||
rm -f $(RELZIP) | ||
curl --remote-name --time-cond cacert.pem https://curl.se/ca/cacert.pem | ||
cp $(GLIDE)/v1/lib/glide3x.dxe ./GLIDE3X.DXE | ||
cp $(OPENSSL)/apps/openssl.exe . | ||
zip -9 -r $(RELZIP) $(EXE) WATTCP.CFG GLIDE3X.DXE CWSDPMI.EXE LICENSE *.md JSBOOT.ZIP examples/*.js tests/*.js tests/*.svg $(GLIDE)/*/lib/glide3x.dxe V_*.BAT TEXUS.EXE cacert.pem openssl.exe *.DXE | ||
zip -9 -r $(RELZIP) $(EXE) WATTCP.CFG GLIDE3X.DXE CWSDPMI.EXE LICENSE *.md JSBOOT.ZIP examples/ tests/*.js tests/*.svg tests/*.mpg tests/*.ogg $(GLIDE)/*/lib/glide3x.dxe V_*.BAT TEXUS.EXE cacert.pem openssl.exe *.DXE | ||
scp $(RELZIP) [email protected]:/sata/c64 | ||
|
||
doc: | ||
|
@@ -204,7 +209,7 @@ init: | |
|
||
clean: | ||
rm -rf $(BUILDDIR)/ | ||
rm -f $(EXE) DOJS.exe $(ZIP) JSLOG.TXT TEXUS.EXE GLIDE3X.DXE JSBOOT.ZIP cacert.pem | ||
rm -f $(EXE) DOJS.exe $(ZIP) JSLOG.TXT TEXUS.EXE GLIDE3X.DXE JSBOOT.ZIP cacert.pem W32DHCP.TMP | ||
for dir in $(DXE_DIRS); do \ | ||
$(MAKE) -C $$dir -f Makefile $@; \ | ||
done | ||
|
@@ -241,6 +246,9 @@ curlclean: | |
$(MAKE) -C $(CURL)/lib -f Makefile.dj clean | ||
rm -f $(CURL)/lib/libcurl.a | ||
|
||
muclean: | ||
rm -f $(MUJS)/build/release/libmujs.a | ||
|
||
glideclean: | ||
rm -rf glidedxe.c | ||
|
||
|
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
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
Oops, something went wrong.