removed comments
[winnie] / Makefile
index a132c3f..24b1989 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ dbg = -g
 opt = -O0
 inc = -Isrc
 
-#backend = SDL
+backend = SDL
 
 ifeq ($(backend), SDL)
        def = -DWINNIE_SDL
@@ -18,7 +18,7 @@ endif
 
 CXX = g++
 CXXFLAGS = -pedantic -Wall $(dbg) $(opt) $(inc) $(def) `freetype-config --cflags`
-LDFLAGS = $(libs) `freetype-config --libs`
+LDFLAGS = $(libs) `freetype-config --libs` -lrt
 
 $(bin): $(obj)
        $(CXX) -o $@ $(obj) $(LDFLAGS)