Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
321 additions
and 3 deletions.
- +32 −0 configure.in
- +1 −0 docs.html
- +1 −2 src/audio/Makefile.am
- +3 −1 src/audio/SDL_audio.c
- +3 −0 src/audio/SDL_sysaudio.h
- +6 −0 src/audio/disk/.cvsignore
- +9 −0 src/audio/disk/Makefile.am
- +222 −0 src/audio/disk/SDL_diskaudio.c
- +44 −0 src/audio/disk/SDL_diskaudio.h
@@ -0,0 +1,6 @@ | ||
Makefile.in | ||
Makefile | ||
.libs | ||
*.o | ||
*.lo | ||
*.la |
@@ -0,0 +1,9 @@ | ||
|
||
## Makefile.am for SDL audio "driver" that writes to a file. | ||
|
||
noinst_LTLIBRARIES = libaudio_disk.la | ||
libaudio_disk_la_SOURCES = $(SRCS) | ||
|
||
# The SDL audio driver sources | ||
SRCS = SDL_diskaudio.c \ | ||
SDL_diskaudio.h |
Oops, something went wrong.