summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@cryptonomic.net>2021-10-07 16:18:19 -0400
committerAndrew Cady <d@cryptonomic.net>2021-10-07 16:18:19 -0400
commitd965141cc88f05127e70e79f7613170224edab5e (patch)
tree8576f0aab7cba48be89fbcf02726954047ba248f
parent4f0d0347d2b27689f91dda9723c48f6d37f4a05e (diff)
cleanup whitespace
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 7555f2f..9fba668 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,13 @@
1SOURCES = client.c gitversion.c log.c mach.c main.c util.c 1SOURCES = client.c gitversion.c log.c mach.c main.c util.c
2OBJECTS=$(SOURCES:.c=.o) 2OBJECTS = $(SOURCES:.c=.o)
3INCLUDES = client.h gitversion.h log.h mach.h main.h tox_bootstrap.h utarray.h uthash.h util.h utlist.h utstring.h 3INCLUDES = client.h gitversion.h log.h mach.h main.h tox_bootstrap.h utarray.h uthash.h util.h utlist.h utstring.h
4DEPS=toxcore 4DEPS = toxcore
5CC=gcc 5CC = gcc
6CFLAGS=-g -Wall #-std=c99 6CFLAGS = -g -Wall #-std=c99
7CFLAGS += $(shell pkg-config --cflags $(DEPS)) 7CFLAGS += $(shell pkg-config --cflags $(DEPS))
8LDFLAGS=-g -pthread -lm -static -lrt 8LDFLAGS = -g -pthread -lm -static -lrt
9LDFLAGS += $(shell pkg-config --static --libs $(DEPS)) 9LDFLAGS += $(shell pkg-config --static --libs $(DEPS))
10DSO_LDFLAGS=-g -pthread -lm -lrt 10DSO_LDFLAGS = -g -pthread -lm -lrt
11DSO_LDFLAGS += $(shell pkg-config --libs $(DEPS)) 11DSO_LDFLAGS += $(shell pkg-config --libs $(DEPS))
12PYTHON = /usr/bin/env python3 12PYTHON = /usr/bin/env python3
13INSTALL = install -C 13INSTALL = install -C