i2pd/tests/Makefile

24 lines
751 B
Makefile
Raw Normal View History

2016-04-27 03:00:00 +03:00
CXXFLAGS += -Wall -Wextra -pedantic -O0 -g -std=c++11 -D_GLIBCXX_USE_NANOSLEEP=1
2017-03-21 17:45:57 +03:00
TESTS = test-gost test-gost-sig test-base-64
2016-04-27 03:00:00 +03:00
all: $(TESTS) run
2016-06-28 03:00:00 +03:00
test-http-%: ../HTTP.cpp test-http-%.cpp
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) -o $@ $^
test-base-%: ../Base.cpp test-base-%.cpp
2016-04-27 03:00:00 +03:00
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) -o $@ $^
2017-03-21 17:45:57 +03:00
test-gost: ../Gost.cpp ../I2PEndian.cpp test-gost.cpp
2017-03-21 16:43:36 +03:00
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) -o $@ $^ -lcrypto
2017-03-21 17:45:57 +03:00
test-gost-sig: ../Gost.cpp ../I2PEndian.cpp ../Signature.cpp ../Crypto.cpp ../Log.cpp test-gost-sig.cpp
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) -o $@ $^ -lcrypto -lssl -lboost_system
2016-04-27 03:00:00 +03:00
run: $(TESTS)
@for TEST in $(TESTS); do ./$$TEST ; done
clean:
rm -f $(TESTS)