mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-02-02 11:04:00 +01:00
Merge pull request #9 from majestrate/master
update to use restructured format
This commit is contained in:
commit
3121e8912b
6
Makefile
6
Makefile
|
@ -1,7 +1,9 @@
|
||||||
I2PD_PATH = i2pd
|
I2PD_PATH = i2pd
|
||||||
|
LIBI2PD_PATH = $(I2PD_PATH)/libi2pd
|
||||||
|
LIBI2PD_CLIENT_PATH = $(I2PD_PATH)/libi2pd_client
|
||||||
CXX = g++
|
CXX = g++
|
||||||
FLAGS = -g -Wall -std=c++11
|
FLAGS = -g -Wall -std=c++11
|
||||||
INCFLAGS = -I$(I2PD_PATH)
|
INCFLAGS = -I$(LIBI2PD_PATH) -I$(LIBI2PD_CLIENT_PATH) -I$(I2PD_PATH)
|
||||||
CXXFLAGS = $(FLAGS) $(INCFLAGS)
|
CXXFLAGS = $(FLAGS) $(INCFLAGS)
|
||||||
LDFLAGS = -Wl,-rpath,/usr/local/lib
|
LDFLAGS = -Wl,-rpath,/usr/local/lib
|
||||||
LIBS = $(I2PD_PATH)/libi2pd.a -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lssl -lcrypto -lpthread -lrt -lz
|
LIBS = $(I2PD_PATH)/libi2pd.a -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lssl -lcrypto -lpthread -lrt -lz
|
||||||
|
@ -49,7 +51,7 @@ clean-obj:
|
||||||
rm -f $(OBJECTS)
|
rm -f $(OBJECTS)
|
||||||
|
|
||||||
clean-bin:
|
clean-bin:
|
||||||
rm -f keyinfo keygen famtool regaddr
|
rm -f keyinfo keygen famtool regaddr routerinfo
|
||||||
|
|
||||||
clean: clean-i2pd clean-obj clean-bin
|
clean: clean-i2pd clean-obj clean-bin
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue