Skip to content

Commit 669d18a

Browse files
author
Michael
authored
Create Makefile
1 parent 67f6ff7 commit 669d18a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
configure:
2+
chmod a+x split.py
3+
./split.py
4+
5+
build:
6+
g++ -c out/httplib.cc -std=c++11 -o out/httplib.o
7+
ar rcs out/libhttp.a out/httplib.o
8+
9+
install:
10+
cp httplib.h /usr/include
11+
cp libhttp.a /usr/lib
12+
13+
clean:
14+
rm -rf out

0 commit comments

Comments
 (0)