Reorganize project structure: move public files to public/ directory
This commit is contained in:
parent
8de043bfef
commit
38545721a0
253 changed files with 0 additions and 0 deletions
16
public/languages/cpp/cpp-httplib/Makefile
Normal file
16
public/languages/cpp/cpp-httplib/Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
CXX = g++
|
||||
CXXFLAGS = -std=c++17 -Wall -Wextra -O2 -DCPPHTTPLIB_OPENSSL_SUPPORT
|
||||
LDFLAGS = -lssl -lcrypto -lpthread
|
||||
|
||||
TARGET = uncloseai
|
||||
SRC = uncloseai.cpp
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): $(SRC) httplib.h
|
||||
$(CXX) $(CXXFLAGS) -o $(TARGET) $(SRC) $(LDFLAGS)
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET) speech.mp3
|
||||
|
||||
.PHONY: all clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue