Navigation Menu

Skip to content

Commit

Permalink
Initial revision
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Lantinga committed Oct 21, 1999
0 parents commit 91b7bf1
Show file tree
Hide file tree
Showing 82 changed files with 35,382 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CHANGES
@@ -0,0 +1,9 @@

1.0.0:
SOL - Added autoconf support
SP - Added MP3 support using SMPEG

Initial Key:
SOL - Sam Lantinga (hercules@lokigames.com)
SP - Stephane Peter (megastep@lokigames.com)

437 changes: 437 additions & 0 deletions COPYING

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions Makefile.am
@@ -0,0 +1,30 @@
# Makefile.am for the SDL sample mixer library and players

lib_LTLIBRARIES = libmixer.la

SUBDIRS = mikmod timidity

libmixerincludedir = $(includedir)
libmixerinclude_HEADERS = \
mixer.h

libmixer_la_SOURCES = \
mixer.c \
music.c \
music_cmd.c \
music_cmd.h \
wave.h \
wavestream.c \
wavestream.h

libmixer_la_LDFLAGS = \
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libmixer_la_LIBADD = \
mikmod/libmikmod.la \
timidity/libtimidity.la

bin_PROGRAMS = playwave playmus

playwave_LDADD = libmixer.la
playmus_LDADD = libmixer.la

0 comments on commit 91b7bf1

Please sign in to comment.