其他未完成

This commit is contained in:
2023-08-14 17:21:53 +08:00
parent 3fb8491555
commit a0ea598880
13 changed files with 2659 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
cc = g++
cflags = -Wall -lssl -lcrypto -lcurl -ljsoncpp
cflags += -I/home/flykhan/.tools/openssl_build/include/
cflags += -I/home/flykhan/.tools/curl/include/
cflags += -I/home/flykhan/.tools/jsoncpp-Sandbox/jsoncpp-build/include/
cflags += -L/home/flykhan/.tools/openssl_build/lib/
cflags += -L/home/flykhan/.tools/curl/lib/
cflags += -L/home/flykhan/.tools/jsoncpp-Sandbox/jsoncpp-build/lib/
main: main.cpp
$(cc) main.cpp -o main $(cflags) -std=c++14
clean:
rm *.o main -rf