You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
i2pd/contrib/tools/keyinfo/Makefile

9 lines
173 B
Makefile

CXXFLAGS = -I ../../../
all: keyinfo
keyinfo:
$(CXX) -o keyinfo keyinfo.cpp $(CXXFLAGS) -std=c++11 ../../../libi2pd.a -lssl -lcrypto -lboost_system
clean:
$(RM) keyinfo