aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: b13d23937b242ae1f2bdb1723d34072577546517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
SHELL = /bin/sh
CC = clang
# -Wunused-function is pretty annoying here, as everything is static
CFLAGS = -std=c99 -Wall -Wextra -Wno-unused-function -ggdb
# -lpthread is only there for debugging (gdb & errno)
# -lrt is only for glibc < 2.17
LDFLAGS = `pkg-config --libs libssl jansson` -lpthread -lrt -ldl -lcurses
LDFLAGS_PLUGIN = $(LDFLAGS) -shared -fPIC

.PHONY: all clean
.SUFFIXES:

targets = ponymap ponymap.1 plugins/http.so plugins/irc.so plugins/ssh.so

all: $(targets)

clean:
	rm -f $(targets)

ponymap: ponymap.c utils.c plugin-api.h siphash.c
	$(CC) ponymap.c siphash.c -o $@ $(CFLAGS) $(LDFLAGS)

ponymap.1: ponymap
	help2man -No $@ ./$<

plugins/%.so: plugins/%.c utils.c plugin-api.h
	$(CC) $< -o $@ $(CFLAGS) $(LDFLAGS_PLUGIN)

plugins/http.so: plugins/http.c utils.c plugin-api.h \
	http-parser/http_parser.c http-parser/http_parser.h
	$(CC) $< http-parser/http_parser.c -o $@ $(CFLAGS) $(LDFLAGS_PLUGIN)