瀏覽代碼

Added new example to makefile

pull/135/head
raysan5 9 年之前
父節點
當前提交
40fbe9da81
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      examples/Makefile

+ 5
- 0
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)

Loading…
取消
儲存