mirror of
https://git.kore.io/kore.git
synced 2024-11-12 05:10:48 +01:00
848704f74b
to build an initial spdy response (SYN frame + header block content).
23 lines
503 B
Makefile
23 lines
503 B
Makefile
# Kore Makefile
|
|
|
|
CC=gcc
|
|
BIN=kore
|
|
|
|
S_SRC= src/kore.c src/net.c src/spdy.c src/http.c src/utils.c src/zlib_dict.c
|
|
S_OBJS= $(S_SRC:.c=.o)
|
|
|
|
CFLAGS+=-I/usr/local/ssl/include
|
|
CFLAGS+=-Wall -Wstrict-prototypes -Wmissing-prototypes
|
|
CFLAGS+=-Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual
|
|
CFLAGS+=-Wsign-compare -Iincludes -g
|
|
LDFLAGS=-Llibs -lssl -lcrypto -ldl -lz
|
|
|
|
light: $(S_OBJS)
|
|
$(CC) $(CFLAGS) $(S_OBJS) $(LDFLAGS) -o $(BIN)
|
|
|
|
.c.o: $<
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
clean:
|
|
rm -f src/*.o $(BIN)
|