• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/intel-driver


Commit MetaInfo

Revision5fdfdf40ac95a083459c8a7a40c28d91dcffdea1 (tree)
Time2014-12-15 13:53:30
AuthorXiang, Haihao <haihao.xiang@inte...>
CommiterXiang, Haihao

Log Message

Fix the broken out of tree builds

Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
Reviewed-by: Zhao, Yakui <yakui.zhao@intel.com>

Change Summary

Incremental Difference

--- a/src/shaders/post_processing/gen9/Makefile.am
+++ b/src/shaders/post_processing/gen9/Makefile.am
@@ -1,4 +1,4 @@
1-SRCDIR = ../gen8/
1+SRCDIR = $(top_srcdir)/src/shaders/post_processing/gen8
22 VPATH = $(SRCDIR)
33
44 INTEL_PP_G9B = \
@@ -59,10 +59,10 @@ SUFFIXES = .g9b .g9s .asm
5959 $(INTEL_PP_GEN9_ASM): $(INTEL_PP_ASM) $(INTEL_PP_G9A)
6060 .asm.g9s:
6161 $(AM_V_GEN)cpp $< > _pp0.$@; \
62- ../../gpp.py _pp0.$@ $@; \
62+ $(PYTHON2) $(top_srcdir)/src/shaders/gpp.py _pp0.$@ $@; \
6363 rm _pp0.$@
6464 .g9s.g9b:
65- $(AM_V_GEN)intel-gen4asm -a -o $@ -g 9 $<
65+ $(AM_V_GEN)$(GEN4ASM) -a -o $@ -g 9 $<
6666
6767 CLEANFILES = $(INTEL_PP_GEN9_ASM)
6868
--- a/src/shaders/render/Makefile.am
+++ b/src/shaders/render/Makefile.am
@@ -170,7 +170,7 @@ $(INTEL_G8S): $(INTEL_G8A) $(INTEL_G8I)
170170
171171 $(INTEL_G9S): $(INTEL_G9A) $(INTEL_G9I)
172172 .g9a.g9s:
173- $(AM_V_GEN)m4 $< > $@
173+ $(AM_V_GEN)m4 -I$(srcdir) $< > $@
174174 .g9s.g9b:
175175 $(AM_V_GEN)$(GEN4ASM) -g 9 -o $@ $<
176176