summaryrefslogtreecommitdiff
path: root/cethcan/Makefile
blob: 933dd7733ab396fbda38cccf486db30bb5fef355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
love: cethcan
.PHONY: love

PKGS="libevent jansson"
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 ttydmx.o
	gcc $(L_LDFLAGS) -o $@ $^

clean:
	rm -f *.o *.y.c *.y.h *.l.c cethcan

jsonrpc.o: jsonrpc/jsonrpc.c jsonrpc/jsonrpc.h
	gcc $(L_CFLAGS) -c -o $@ $<

%.o: %.c *.h
	gcc $(L_CFLAGS) -c -o $@ $<