diff options
author | nirav <nirav@teisuu.com> | 2019-03-08 01:40:21 +0530 |
---|---|---|
committer | Dandelion <nirav@teisuu.com> | 2019-03-08 01:40:21 +0530 |
commit | 77a9d0050c16ffd6c4d3a2b17533954d560bb019 (patch) | |
tree | f9d76b82cc3d82e3713cb0af071cc564889320a7 /Makefile | |
parent | 6dd58a30761eca36544c4e815b36907eab084949 (diff) | |
download | ap_client-77a9d0050c16ffd6c4d3a2b17533954d560bb019.tar.gz ap_client-77a9d0050c16ffd6c4d3a2b17533954d560bb019.zip |
Add async http post support
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,8 +3,9 @@ PKGCONFIG=$(shell which pkg-config) CFLAGS=-o2 -pipe CFLAGS+=-Wall -Wextra -Wno-unused-parameter -CFLAGS+=$(shell $(PKGCONFIG) --cflags gtk+-3.0 libcurl jansson) -LDFLAGS+=$(shell $(PKGCONFIG) --libs gtk+-3.0 libcurl jansson) +CFLAGS+=$(shell $(PKGCONFIG) --cflags gtk+-3.0 libcurl jansson) -lpthread +LDFLAGS+=$(shell $(PKGCONFIG) --libs gtk+-3.0 libcurl jansson) -lpthread +LDFLAGS+= DESTDIR= PREFIX=/usr/local BINDIR=$(PREFIX)/bin |