Changeset 15f9c8e
- Timestamp:
- Sep 12, 2019, 3:59:44 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 34e1494
- Parents:
- 7009b9b
- Location:
- tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile.am
r7009b9b r15f9c8e 99 99 #---------------------------------------------------------------------------------------------------------------- 100 100 101 is_ascii = $(shell file )102 103 101 # implicit rule so not all test require a rule 102 # split into two steps to support compiling remotely using distcc 104 103 % : %.cfa $(CFACCBIN) 105 104 $(CFACOMPILETEST) -c -o $(abspath ${@}).o 106 105 $(CFACC) $(abspath ${@}).o -o $(abspath ${@}) 107 106 108 # @ if [[ "$(shell file $(abspath ${@}).o)" == *"ASCII text"* ]]; then echo "mv $(abspath ${@}).o $(abspath ${@})"; mv $(abspath ${@}).o $(abspath ${@}); else echo "$(CFACC) $(abspath ${@}).o -o $(abspath ${@});"; $(CFACC) $(abspath ${@}).o -o $(abspath ${@}); fi109 107 # second implicit rule for programs that don't produce an executable 108 # still in two steps for distcc 110 109 declarationSpecifier gccExtensions extension attributes functions KRfunctions : % : %.cfa $(CFACCBIN) 111 110 $(CFACOMPILETEST) -CFA -XCFA -p -o $(abspath ${@}).o -
tests/Makefile.in
r7009b9b r15f9c8e 412 412 CFATEST_STDERR = $(CFACOMPILETEST) 2> $(abspath ${@}) 413 413 414 #----------------------------------------------------------------------------------------------------------------415 is_ascii = $(shell file )416 417 414 #------------------------------------------------------------------------------ 418 415 # TARGET WITH STANDARD RULE BUT CUSTOM FLAGS … … 808 805 @+${TEST_PY} --debug=${debug} --install=${installed} -Iconcurrent 809 806 807 #---------------------------------------------------------------------------------------------------------------- 808 810 809 # implicit rule so not all test require a rule 810 # split into two steps to support compiling remotely using distcc 811 811 % : %.cfa $(CFACCBIN) 812 812 $(CFACOMPILETEST) -c -o $(abspath ${@}).o 813 813 $(CFACC) $(abspath ${@}).o -o $(abspath ${@}) 814 814 815 # @ if [[ "$(shell file $(abspath ${@}).o)" == *"ASCII text"* ]]; then echo "mv $(abspath ${@}).o $(abspath ${@})"; mv $(abspath ${@}).o $(abspath ${@}); else echo "$(CFACC) $(abspath ${@}).o -o $(abspath ${@});"; $(CFACC) $(abspath ${@}).o -o $(abspath ${@}); fi816 815 # second implicit rule for programs that don't produce an executable 816 # still in two steps for distcc 817 817 declarationSpecifier gccExtensions extension attributes functions KRfunctions : % : %.cfa $(CFACCBIN) 818 818 $(CFACOMPILETEST) -CFA -XCFA -p -o $(abspath ${@}).o
Note: See TracChangeset
for help on using the changeset viewer.