You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
540 B
28 lines
540 B
8 years ago
|
CXX = g++
|
||
|
CXXFLAGS = -g -Wall -std=c++11
|
||
|
OBJECTS = keygen.o
|
||
|
INCFLAGS = -I"../i2pd"
|
||
|
LDFLAGS = -Wl,-rpath,/usr/local/lib
|
||
|
LIBS = ../i2pd/libi2pd.a -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lssl -lcrypto -lpthread -lrt -lz
|
||
|
|
||
|
all: keygen
|
||
|
|
||
|
keygen: $(OBJECTS)
|
||
|
$(CXX) -o keygen $(OBJECTS) $(LDFLAGS) $(LIBS)
|
||
|
|
||
|
.SUFFIXES:
|
||
|
.SUFFIXES: .c .cc .C .cpp .o
|
||
|
|
||
|
.cpp.o :
|
||
|
$(CXX) -o $@ -c $(CXXFLAGS) $< $(INCFLAGS)
|
||
|
|
||
|
count:
|
||
|
wc *.c *.cc *.C *.cpp *.h *.hpp
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o keygen
|
||
|
|
||
|
.PHONY: all
|
||
|
.PHONY: count
|
||
|
.PHONY: clean
|