Skip to content

Commit

Permalink
* (3/3) cleanup : unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hagen committed Dec 13, 2014
1 parent d6ec412 commit aa0cb6b
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ obj/%.o : %.cpp %.h
$(CXX) $(CXXFLAGS) $(INCFLAGS) -c -o $@ $<

$(I2PD): $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC))
$(CXX) -o $@ $(LDLIBS) $(LDFLAGS) $(LIBS) $^
$(CXX) -o $@ $(LDLIBS) $(LDFLAGS) $^

$(SHLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC))
$(CXX) -o $@ -shared $(CXXFLAGS) $(INCFLAGS) $^
Expand Down
1 change: 0 additions & 1 deletion Makefile.bsd
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ CXXFLAGS = -g -Wall -O2 -std=c++11
INCFLAGS = -I/usr/include/ -I/usr/local/include/
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib
LDLIBS = -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
LIBS =
1 change: 0 additions & 1 deletion Makefile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ USE_AESNI := no
else
LDLIBS = -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
endif
LIBS =

ifeq ($(USE_AESNI),yes)
ifeq ($(IS_64),1)
Expand Down
1 change: 0 additions & 1 deletion Makefile.osx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ CXXFLAGS = -g -Wall -std=c++11 -lstdc++ -I/usr/local/include
INCFLAGS = -DCRYPTOPP_DISABLE_ASM
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib
LDLIBS = -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
LIBS =

# OSX Notes
# http://www.hutsby.net/2011/08/macs-with-aes-ni.html
Expand Down

0 comments on commit aa0cb6b

Please sign in to comment.