diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-27 15:13:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-27 15:13:09 +0200 |
commit | 2b3b6f26e5125bdc23d07c88c369b5c6ce070a61 (patch) | |
tree | 721ba790c135f05ae86e5a2f1449858e14e6b132 /tracer/include | |
parent | 939cffda799008298fd45344302d5e6c2889061d (diff) |
Fix issues preventing building outside source directory
Diffstat (limited to 'tracer/include')
-rw-r--r-- | tracer/include/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tracer/include/makefile b/tracer/include/makefile index f5c9f32..a7f7089 100644 --- a/tracer/include/makefile +++ b/tracer/include/makefile @@ -32,8 +32,8 @@ $(call import,\ # Build. # $(driver): $(cxx_obj) $(odb_tracer.l) $(odb.l) -$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(out_base)/../.. \ --I$(src_base)/../.. +$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base) \ +-I$(out_base)/../.. -I$(src_base)/../.. $(cxx_obj) $(cxx_od): $(odb_tracer.l.cpp-options) $(odb.l.cpp-options) genf := $(foreach f,$(odb_hdr:.hxx=-odb),$(addprefix $f,.hxx .ixx .cxx)) |