diff options
| author | raysan5 <raysan5@gmail.com> | 2016-07-17 18:27:32 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-07-17 18:27:32 +0200 |
| commit | 40fbe9da81e47c47c8c67b3a2abebb78bb1539b1 (patch) | |
| tree | db20deb82f71174b5009970319ee61187bc50f6d /examples | |
| parent | 8328353204212f754c7ef004a18de7161d91bb89 (diff) | |
| download | raylib-40fbe9da81e47c47c8c67b3a2abebb78bb1539b1.tar.gz raylib-40fbe9da81e47c47c8c67b3a2abebb78bb1539b1.zip | |
Added new example to makefile
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile index d20e229b..39765f15 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -209,6 +209,7 @@ EXAMPLES = \ shaders_standard_lighting \ audio_sound_loading \ audio_music_stream \ + audio_module_playing \ fix_dylib \ @@ -435,6 +436,10 @@ 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) +audio_module_playing: audio_module_playing.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) |
