diff options
author | David Lamparter <equinox@diac24.net> | 2016-05-15 14:03:59 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2016-05-15 14:03:59 +0200 |
commit | 58e5252557fb0eea1585cd9624e1da0a730d9a4c (patch) | |
tree | 3187f5672dcc156c1574509bde7aacd4742feef2 /cethcan/Makefile | |
parent | 3dc9bd30e3e116cae4ca48c874a5ad571aa726c7 (diff) |
cethcan: ttyDMX
Diffstat (limited to 'cethcan/Makefile')
-rw-r--r-- | cethcan/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cethcan/Makefile b/cethcan/Makefile index bc8fab4..933dd77 100644 --- a/cethcan/Makefile +++ b/cethcan/Makefile @@ -2,11 +2,11 @@ love: cethcan .PHONY: love PKGS="libevent jansson" -L_CFLAGS=-g -O0 -Wall -Wextra -Wshadow -pedantic -Wno-unused-parameter -Wno-format -std=gnu99 `pkg-config --cflags $(PKGS)` $(CFLAGS) -L_LDFLAGS=-g `pkg-config --libs $(PKGS)` -lcrypto $(LDFLAGS) +L_CFLAGS=-g -O0 -pthread -Wall -Wextra -Wshadow -pedantic -Wno-unused-parameter -Wno-format -std=gnu11 `pkg-config --cflags $(PKGS)` $(CFLAGS) +L_LDFLAGS=-g -pthread `pkg-config --libs $(PKGS)` -lcrypto $(LDFLAGS) cethcan: main.o can.o ether.o light.o beanctr.o \ - http.o socketcan.o jsonrpc.o rpc.o espnet.o + http.o socketcan.o jsonrpc.o rpc.o espnet.o ttydmx.o gcc $(L_LDFLAGS) -o $@ $^ clean: |