Skip to content

Commit fabdd2e

Browse files
author
blog.s135.com
committed
HTTPSQS 1.0 beta 版本发布
0 parents  commit fabdd2e

2 files changed

Lines changed: 688 additions & 0 deletions

File tree

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Makefile for httpsqs
2+
CC=gcc
3+
CFLAGS=-O2 -Wall -levent -ltokyocabinet -lz -lbz2 -lrt -lpthread -lm -lc
4+
5+
httpsqs: httpsqs.c
6+
$(CC) $(CFLAGS) httpsqs.c -o httpsqs
7+
8+
clean: httpsqs
9+
rm -f httpsqs
10+
11+
install: httpsqs
12+
install $(INSTALL_FLAGS) -m 4755 -o root httpsqs $(DESTDIR)/usr/bin

0 commit comments

Comments
 (0)