Actually upload data
This commit is contained in:
7
Makefile
7
Makefile
@ -1,6 +1,9 @@
|
||||
CC = clang
|
||||
CFLAGS_GEOCLUE = -I/usr/include/libgeoclue-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/sysprof-6 -pthread
|
||||
CFLAGS = -Wall -Wextra -g $(CFLAGS_GEOCLUE) -ljson-c -lcurl -lgeoclue-2 -lglib-2.0 -lgobject-2.0
|
||||
CFLAGS_GLIB = $(shell pkgconf --cflags --libs glib-2.0)
|
||||
CFLAGS_GEOCLUE = $(shell pkgconf --cflags --libs libgeoclue-2.0)
|
||||
CFLAGS_JSONC = $(shell pkgconf --cflags --libs json-c)
|
||||
CFLAGS_CURL = $(shell pkgconf --cflags --libs libcurl)
|
||||
CFLAGS = -Wall -Wextra -g $(CFLAGS_GLIB) $(CFLAGS_GEOCLUE) $(CFLAGS_JSONC) $(CFLAGS_CURL)
|
||||
SRCS = src/main.c
|
||||
|
||||
phonetrackd := phonetrackd
|
||||
|
Reference in New Issue
Block a user