diff options
author | Brian Paul <[email protected]> | 2010-02-08 17:39:08 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-08 17:39:08 -0700 |
commit | 7d36b678c5b76f91d64c8b45edc3c15919f16dff (patch) | |
tree | 34ed162fb04dce191bfb201f7345579173ca1db6 /src/gallium | |
parent | 6c28cc27eb36f201d9c5ed82836f65e38bf9b6a3 (diff) |
gallivm: added gallivm/lp_bld_misc.cpp to Makefile
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/Makefile b/src/gallium/auxiliary/Makefile index 238daa25172..02c65a9b2d9 100644 --- a/src/gallium/auxiliary/Makefile +++ b/src/gallium/auxiliary/Makefile @@ -154,10 +154,15 @@ GALLIVM_SOURCES = \ gallivm/lp_bld_tgsi_soa.c \ gallivm/lp_bld_type.c +GALLIVM_CPP_SOURCES = \ + gallivm/lp_bld_misc.cpp + ifeq ($(MESA_LLVM),1) C_SOURCES += \ $(GALLIVM_SOURCES) +CPP_SOURCES += \ + $(GALLIVM_CPP_SOURCES) endif |