summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 32f6d87..e839995 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
1SOURCES = $(wildcard *.c) 1SOURCES = $(wildcard *.c)
2DEPS=libtoxcore 2DEPS=libtoxcore
3CC=gcc 3CC=gcc
4CFLAGS=-g #-std=c99 4CFLAGS=-g -O2 #-std=c99
5CFLAGS += $(shell pkg-config --cflags $(DEPS)) 5CFLAGS += $(shell pkg-config --cflags $(DEPS))
6LDFLAGS=-g -pthread -lm -static -lrt 6LDFLAGS=-g -pthread -lm -static -lrt
7LDFLAGS += $(shell pkg-config --libs $(DEPS)) 7LDFLAGS += $(shell pkg-config --libs $(DEPS))