Changeset 08ce416
- Timestamp:
- Dec 7, 2020, 12:57:06 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- a468e1e9
- Parents:
- ad915e0
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
rad915e0 r08ce416 21 21 22 22 SUBDIRS = driver src . @LIBCFA_TARGET_DIRS@ 23 DIST_SUBDIRS = driver src . libcfa benchmark longrun_teststests tools tools/prettyprinter23 DIST_SUBDIRS = driver src . libcfa tests tools tools/prettyprinter 24 24 25 25 @LIBCFA_TARGET_MAKEFILES@ : Makefile $(srcdir)/libcfa/configure -
configure.ac
rad915e0 r08ce416 3 3 4 4 AC_PREREQ([2.68]) 5 AC_INIT([cfa-cc],[1.0.0 .0],[cforall@plg.uwaterloo.ca])5 AC_INIT([cfa-cc],[1.0.0],[cforall@plg.uwaterloo.ca]) 6 6 AC_CONFIG_AUX_DIR([automake]) 7 7 AC_CONFIG_MACRO_DIRS([automake]) … … 35 35 no) newast=false; DEFAULT_NEW_AST="False" ;; 36 36 *) AC_MSG_ERROR([bad value ${enableval} for --enable-new-ast]) ;; 37 esac],[newast= false])37 esac],[newast=true]) 38 38 AC_DEFINE_UNQUOTED([CFA_USE_NEW_AST], $newast) 39 39 AC_SUBST(DEFAULT_NEW_AST) … … 139 139 \'--enable-gprofiler=*) ;; 140 140 \'--disable-gprofiler) ;; 141 142 # skip the target hosts 143 \'--enable-new-ast=*) ;; 144 \'--disable-new-ast) ;; 141 145 142 146 # skip this, it only causes problems … … 287 291 libcfa/Makefile:libcfa/Makefile.dist.in 288 292 tests/Makefile 289 longrun_tests/Makefile290 benchmark/Makefile291 benchmark/io/http/Makefile292 293 tools/Makefile 293 294 tools/prettyprinter/Makefile 294 295 ]) 295 296 297 # Some of our makefile don't need to be distributed 298 AM_CONDITIONAL([CFORALL_DISTRIBUTE], [test -e $TOP_SRCDIR/autogen.sh]) 299 AM_COND_IF([CFORALL_DISTRIBUTE], 300 [AC_CONFIG_FILES([ 301 longrun_tests/Makefile 302 benchmark/Makefile 303 benchmark/io/http/Makefile 304 ])]) 305 296 306 AC_CONFIG_LINKS([tests/test.py:tests/test.py]) 297 307 -
libcfa/configure.ac
rad915e0 r08ce416 3 3 4 4 AC_PREREQ([2.68]) 5 AC_INIT([cfa-cc],[1.0.0 .0],[cforall@plg.uwaterloo.ca])5 AC_INIT([cfa-cc],[1.0.0],[cforall@plg.uwaterloo.ca]) 6 6 AC_CONFIG_AUX_DIR([automake]) 7 7 AC_CONFIG_MACRO_DIRS([automake]) -
libcfa/src/Makefile.am
rad915e0 r08ce416 87 87 # not all platforms support concurrency, add option do disable it 88 88 inst_thread_headers_nosrc = \ 89 bits/collection.hfa \ 89 90 bits/random.hfa \ 91 bits/sequence.hfa \ 90 92 concurrency/clib/cfathread.h \ 91 93 concurrency/invoke.h \ -
src/AST/module.mk
rad915e0 r08ce416 59 59 AST/SymbolTable.cpp \ 60 60 AST/SymbolTable.hpp \ 61 AST/TranslationUnit.hpp \ 61 62 AST/Type.cpp \ 62 63 AST/Type.hpp \ -
tests/Makefile.am
rad915e0 r08ce416 68 68 .INTERMEDIATE: .validate .validate.cfa 69 69 EXTRA_PROGRAMS = avl_test .dummy_hack # build but do not install 70 EXTRA_DIST = pybin 70 71 71 72 avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa
Note: See TracChangeset
for help on using the changeset viewer.