mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-27 11:17:49 +02:00
* (1/3) update filelist.mk : 3 lists of sources: common, daemon-specific and library-specific
This commit is contained in:
parent
01bb492faf
commit
8c218bd5df
5 changed files with 21 additions and 25 deletions
11
Makefile
11
Makefile
|
@ -2,12 +2,19 @@ UNAME := $(shell uname -s)
|
|||
SHLIB := libi2pd.so
|
||||
I2PD := i2p
|
||||
|
||||
include filelist.mk
|
||||
|
||||
ifeq ($(UNAME),Darwin)
|
||||
DAEMON_SRC += DaemonLinux.cpp
|
||||
include Makefile.osx
|
||||
else ifeq ($(UNAME), FreeBSD)
|
||||
else ifeq ($(UNAME),FreeBSD)
|
||||
DAEMON_SRC += DaemonLinux.cpp
|
||||
include Makefile.bsd
|
||||
else
|
||||
else ifeq ($(UNAME),Linux)
|
||||
DAEMON_SRC += DaemonLinux.cpp
|
||||
include Makefile.linux
|
||||
else # win32
|
||||
DAEMON_SRC += DaemonWin32.cpp
|
||||
endif
|
||||
|
||||
all: obj $(SHLIB) $(I2PD)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue