1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-08 22:57:52 +00:00
i2pd/Makefile.haiku

11 lines
292 B
Makefile
Raw Normal View History

2023-09-28 19:30:38 +00:00
CXX = g++
2024-08-30 15:03:06 +00:00
CXXFLAGS := -Wall -std=c++17
2023-09-28 19:30:38 +00:00
INCFLAGS = -I/system/develop/headers
DEFINES = -D_DEFAULT_SOURCE -D_GNU_SOURCE
2024-08-30 15:03:06 +00:00
LDLIBS = -lbe -lbsd -lnetwork -lz -lcrypto -lssl -lboost_system -lboost_program_options -lpthread
2023-09-28 19:30:38 +00:00
ifeq ($(USE_UPNP),yes)
DEFINES += -DUSE_UPNP
LDLIBS += -lminiupnpc
endif