This website works better with JavaScript.
Home
Explore
Help
Sign In
brettlangdon
/
ferrite
mirror of
https://github.com/brettlangdon/ferrite.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
2
Wiki
Activity
Browse Source
rename server.c to main.c, update Makefile and add libcurl proxy calling
master
Brett Langdon
13 years ago
parent
68d10f5e36
commit
4faa8f8030
2 changed files
with
61 additions
and
20 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-3
Makefile
+57
-17
src/main.c
+ 4
- 3
Makefile
View File
@ -1,8 +1,9 @@
all
:
gcc -I/usr/local/include server.c -o server -L/usr/local/lib -luv -lkyotocabinet
mkdir -p out
gcc -I/usr/local/include -I~/Downloads/libuv-0.10.12/include ./src/main.c -o ./out/fast-cache -L/usr/local/lib -luv -lkyotocabinet -lcurl
run
:
./
server
./
out/fast-cache
clean
:
rm
./server
rm
-rf out
server.c → src/main.c
View File
Write
Preview
Loading…
Cancel
Save