summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-12-30 21:04:57 +0100
committertomsmeding <tom.smeding@gmail.com>2016-12-30 21:04:57 +0100
commit9f84ef2686feab6c82f7f523319fda65ff077962 (patch)
treeb625f31ba5666694caa7ec77c75965c256f4519d /Makefile
parent6c0a0cc29b00d0a58a3ee55a8a7e4909ebf3454c (diff)
Have draw_text working with SFML
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 54d6f53..2e9ed50 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CXX := g++
-CXXFLAGS := -Wall -Wextra -std=c++11 -O2 -I.
-LIBS := -L/usr/local/lib -lfltk -lfltk_images
+CXXFLAGS := -Wall -Wextra -std=c++11 -O2 -I. -I/usr/local/lib
+LIBS := -L/usr/local/lib -lsfml-{system,window,graphics}
BIN := game
object_src := $(wildcard src/objects/*.cpp)