Skip to content

Commit

Permalink
[Graph]: allow variables in Makevars defined in shell.
Browse files Browse the repository at this point in the history
  • Loading branch information
zheng-da committed Oct 31, 2014
1 parent 119b63d commit 03da36c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions flash-graph/Rpkg/src/Makevars
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# The absolute path of the directory where Rcpp header files are stored.
RCPP_INCLUDE =
ifndef RCPP_INCLUDE
RCPP_INCLUDE = .
endif
# The absolute path of the directory where FlashGraph source code is.
FG_DIR =
ifndef FG_DIR
FG_DIR = .
endif
# The absolute path of the directory where FlashGraph is built.
FG_LIB =
ifndef FG_LIB
FG_LIB = $(FG_DIR)/build
endif
#BOOST_LOG=1
OMP_FLAG = -fopenmp
PKG_LIBS = -L$(FG_LIB)/flash-graph/libgraph-algs -lgraph-algs -L$(FG_LIB)/flash-graph -lgraph
Expand Down

0 comments on commit 03da36c

Please sign in to comment.