Skip to content

Commit

Permalink
Changing the sample makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
michel2323 committed Apr 17, 2018
1 parent d24eb30 commit 880f88c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.sample
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CFLAGS = -g -O0 -Wall
MATH_LIBS = -llapack -lblas
CODI_DIR = $(HOME)/git/CoDiPack
ADUPROP_DIR = $(HOME)/git/aduprop
EIGEN_DIR = $(ADUPROP_DIR)/eigen/install/include/eigen3

# DON'T EDIT BELOW THIS LINE

Expand All @@ -14,7 +15,7 @@ endif

INCLUDE_DIR = $(ADUPROP_DIR)/include
SRC_DIR = $(ADUPROP_DIR)/src
CFLAGS += -std=c++11 -I$(CODI_DIR)/include -I$(INCLUDE_DIR)
CFLAGS += -std=c++11 -I$(CODI_DIR)/include -I$(EIGEN_DIR) -I$(INCLUDE_DIR)
CFLAGS += -I$(ADUPROP_DIR)/CONTRIB
LDLIBS = -L$(ADUPROP_DIR) -laduprop $(MATH_LIBS)
AR = ar
Expand Down

0 comments on commit 880f88c

Please sign in to comment.