Skip to content

Commit

Permalink
FreeBSD support
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Aug 11, 2014
1 parent f8ced20 commit a2707c1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

UNAME := $(shell uname -s)

ifeq ($(UNAME),Darwin)
include Makefile.osx
else ifeq ($(UNAME), FreeBSD)
include Makefile.bsd
else
include Makefile.linux
endif
Expand Down
27 changes: 27 additions & 0 deletions Makefile.bsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
CC = g++
CFLAGS = -std=c++11 -O2
include filelist.mk
INCFLAGS = -I/usr/include/ -I/usr/local/include/
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lcryptopp -lboost_system -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
LIBS =

all: obj i2p

i2p: $(OBJECTS:obj/%=obj/%)
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)

.SUFFIXES:
.SUFFIXES: .c .cc .C .cpp .o

obj/%.o : %.cpp
$(CC) -o $@ $< -c $(CFLAGS) $(INCFLAGS) $(CPU_FLAGS)

obj:
mkdir -p obj

clean:
rm -fr obj i2p

.PHONY: all
.PHONY: clean

0 comments on commit a2707c1

Please sign in to comment.