dungeon_crawler

diff prototype/Makefile.in @ 48:aa9e28670ae2

added sound playback, more to do
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 17 Sep 2012 08:40:59 +0300
parents d52711f2b9a1
children 508540dae114
line diff
     1.1 --- a/prototype/Makefile.in	Sun Sep 16 08:16:50 2012 +0300
     1.2 +++ b/prototype/Makefile.in	Mon Sep 17 08:40:59 2012 +0300
     1.3 @@ -1,6 +1,7 @@
     1.4  csrc = $(wildcard src/*.c) \
     1.5  	   $(wildcard vmath/*.c) \
     1.6 -	   $(wildcard drawtext/*.c)
     1.7 +	   $(wildcard drawtext/*.c) \
     1.8 +	   $(wildcard kdtree/*.c)
     1.9  
    1.10  ccsrc = $(wildcard src/*.cc) \
    1.11  		$(wildcard src/audio/*.cc) \
    1.12 @@ -12,7 +13,7 @@
    1.13  
    1.14  warn = -Wall -Wno-format-extra-args -Wno-char-subscripts
    1.15  
    1.16 -inc = -I. -Isrc/audio -Ivmath -Idrawtext `pkg-config --cflags freetype2`
    1.17 +inc = -I. -Isrc -Ivmath -Idrawtext -Ikdtree `pkg-config --cflags freetype2`
    1.18  
    1.19  CFLAGS = -pedantic $(warn) $(dbg) $(opt) $(inc)
    1.20  CXXFLAGS = $(CFLAGS) $(cxx11_cflags)