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

all: websocksy

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

clean:
	rm websocksy