From 40fbe9da81e47c47c8c67b3a2abebb78bb1539b1 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sun, 17 Jul 2016 18:27:32 +0200 Subject: [PATCH] Added new example to makefile --- examples/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/Makefile b/examples/Makefile index d20e229b7..39765f15e 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)