aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: 20b6579d34474307a74fb51889365eb33729d447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY: all clean plugins
PLUGINPATH?=plugins/

CFLAGS=-g -Wall -Wpedantic -DPLUGINS=\"$(PLUGINPATH)\"
LDLIBS=-lnettle -ldl

OBJECTS=builtins.o network.o websocket.o plugin.o

all: websocksy

plugins:
	$(MAKE) -C plugins

websocksy: LDFLAGS += -Wl,-export-dynamic
websocksy: websocksy.c websocksy.h $(OBJECTS) plugins
	$(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) $< -o $@ $(OBJECTS)

clean:
	$(RM) $(OBJECTS)
	$(RM) websocksy