xglcomp
diff Makefile @ 1:b2b7cb950c28
window list and compositor registration
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 21 Jan 2016 22:50:10 +0200 |
parents | d9b3fba68705 |
children | 86e57e56a454 |
line diff
1.1 --- a/Makefile Thu Jan 21 08:45:31 2016 +0200 1.2 +++ b/Makefile Thu Jan 21 22:50:10 2016 +0200 1.3 @@ -12,8 +12,8 @@ 1.4 incpaths = -Isrc/optcfg 1.5 1.6 CFLAGS = $(warn) $(dbg) $(opt) $(incpaths) 1.7 -CXXFLAGS = $(warn) $(dbg) $(opt) $(incpaths) 1.8 -LDFLAGS = -lGL -lGLEW -lX11 -lXext -lXcomposite -lm 1.9 +CXXFLAGS = -std=c++11 $(warn) $(dbg) $(opt) $(incpaths) 1.10 +LDFLAGS = -lGL -lGLEW -lX11 -lXext -lXcomposite -lXdamage -lm -lpthread 1.11 1.12 $(bin): $(obj) 1.13 $(CXX) -o $@ $(obj) $(LDFLAGS)