From: Wolfgang Bangerth Date: Mon, 22 Nov 2010 22:28:16 +0000 (+0000) Subject: Make sure the include/ directory is in the include path. X-Git-Tag: v8.0.0~4819 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1f9a61a4d7ad8d4ab0333558233a496b4db0381;p=dealii.git Make sure the include/ directory is in the include path. git-svn-id: https://svn.dealii.org/trunk@22840 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/development/Makefile.large b/deal.II/doc/development/Makefile.large index ad99445874..71d2664a04 100644 --- a/deal.II/doc/development/Makefile.large +++ b/deal.II/doc/development/Makefile.large @@ -62,10 +62,10 @@ libs.o := $(lib-deal2.o) # link with and the flags to be passed to the compiler: ifeq ($(debug-mode),on) libraries = $(go-files) $(libs.g) - flags = $(CXXFLAGS.g) + flags = $(CXXFLAGS.g) -Iinclude else libraries = $(o-files) $(libs.o) - flags = $(CXXFLAGS.o) + flags = $(CXXFLAGS.o) -Iinclude endif