aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: 2d2390926748331ba54eab6dd47dffe0d0bdca7d (plain)
1
2
3
4
5
6
7
8
9
10
CFLAGS=-g -Wall -Wpedantic
LDLIBS=-lnettle

all: websocksy

websocksy: websocksy.c websocksy.h ws_proto.c
	$(CC) $(CFLAGS) $(LDLIBS) $< -o $@

clean:
	rm websocksy