* (1/3) update filelist.mk : 3 lists of sources: common, daemon-specific and library-specific

This commit is contained in:
hagen 2014-12-12 07:38:51 +00:00
parent 01bb492faf
commit 8c218bd5df
5 changed files with 21 additions and 25 deletions

View file

@ -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)