mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-11-02 09:40:18 +00:00
19 lines
499 B
Makefile
19 lines
499 B
Makefile
CXXFLAGS += -Wall -Wextra -pedantic -O0 -g -std=c++11 -D_GLIBCXX_USE_NANOSLEEP=1
|
|
|
|
TESTS = test-http-url test-http-req test-http-res test-http-url_decode \
|
|
test-http-merge_chunked test-base-64
|
|
|
|
all: $(TESTS) run
|
|
|
|
test-http-%: ../HTTP.cpp test-http-%.cpp
|
|
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) -o $@ $^
|
|
|
|
test-base-%: ../Base.cpp test-base-%.cpp
|
|
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) -o $@ $^
|
|
|
|
run: $(TESTS)
|
|
@for TEST in $(TESTS); do ./$$TEST ; done
|
|
|
|
clean:
|
|
rm -f $(TESTS)
|