diff options
| author | raysan5 <raysan5@gmail.com> | 2016-08-06 11:32:53 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-08-06 11:32:53 +0200 |
| commit | ae70540a964d63e55e9e25c5f836f26ab34ce51e (patch) | |
| tree | 365a3b9442dd37784c5d44ce5b4c5e7955640d55 /examples/Makefile | |
| parent | 00c7e54d3c593dbddb036f2185e614e7e4b22a1f (diff) | |
| download | raylib-ae70540a964d63e55e9e25c5f836f26ab34ce51e.tar.gz raylib-ae70540a964d63e55e9e25c5f836f26ab34ce51e.zip | |
Added example audio_raw_stream
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile index e10b0bb6..378f5edf 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -229,6 +229,7 @@ EXAMPLES = \ audio_sound_loading \ audio_music_stream \ audio_module_playing \ + audio_raw_stream \ fix_dylib \ @@ -455,10 +456,14 @@ audio_sound_loading: audio_sound_loading.c audio_music_stream: audio_music_stream.c $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) -# compile [audio] example - module playing (OGG) +# compile [audio] example - module playing (XM) audio_module_playing: audio_module_playing.c $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) +# compile [audio] example - raw audio streaming +audio_raw_stream: audio_raw_stream.c + $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) + # fix dylib install path name for each executable (MAC) fix_dylib: ifeq ($(PLATFORM_OS),OSX) |
