1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-10 04:07:52 +00:00
i2pd/Makefile

11 lines
161 B
Makefile
Raw Normal View History

UNAME := $(shell uname -s)
2013-12-10 13:05:42 +00:00
ifeq ($(UNAME),Darwin)
include Makefile.osx
else ifeq ($(UNAME), FreeBSD)
include Makefile.bsd
else
include Makefile.linux
endif
2014-06-02 14:05:04 +00:00