- Timestamp:
- Aug 3, 2018, 1:57:12 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- ba9baad
- Parents:
- c59712e
- Location:
- libcfa
- Files:
-
- 2 added
- 7 edited
-
Makefile.in (modified) (6 diffs)
-
automake/config.guess (added)
-
automake/config.sub (added)
-
configure (modified) (5 diffs)
-
configure.ac (modified) (1 diff)
-
prelude/Makefile.am (modified) (1 diff)
-
prelude/Makefile.in (modified) (6 diffs)
-
src/Makefile.am (modified) (2 diffs)
-
src/Makefile.in (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/Makefile.in
rc59712e rff1e0f38 89 89 PRE_UNINSTALL = : 90 90 POST_UNINSTALL = : 91 build_triplet = @build@ 92 host_triplet = @host@ 91 93 subdir = . 92 94 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 159 161 am__DIST_COMMON = $(srcdir)/Makefile.in \ 160 162 $(top_srcdir)/./automake/compile \ 163 $(top_srcdir)/./automake/config.guess \ 164 $(top_srcdir)/./automake/config.sub \ 161 165 $(top_srcdir)/./automake/install-sh \ 162 166 $(top_srcdir)/./automake/missing ./automake/compile \ 167 ./automake/config.guess ./automake/config.sub \ 163 168 ./automake/depcomp ./automake/install-sh ./automake/missing 164 169 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) … … 216 221 CCASFLAGS = @CCASFLAGS@ 217 222 CCDEPMODE = @CCDEPMODE@ 223 CFACC = @CFACC@ 224 CFACPP = @CFACPP@ 225 CFA_BINDIR = @CFA_BINDIR@ 226 CFA_INCDIR = @CFA_INCDIR@ 227 CFA_LIBDIR = @CFA_LIBDIR@ 228 CFA_PREFIX = @CFA_PREFIX@ 218 229 CFLAGS = @CFLAGS@ 230 CONFIGURATION = @CONFIGURATION@ 219 231 CPPFLAGS = @CPPFLAGS@ 220 232 CXX = @CXX@ … … 224 236 DEFS = @DEFS@ 225 237 DEPDIR = @DEPDIR@ 238 DRIVER_DIR = @DRIVER_DIR@ 226 239 ECHO_C = @ECHO_C@ 227 240 ECHO_N = @ECHO_N@ … … 265 278 am__untar = @am__untar@ 266 279 bindir = @bindir@ 280 build = @build@ 267 281 build_alias = @build_alias@ 282 build_cpu = @build_cpu@ 283 build_os = @build_os@ 284 build_vendor = @build_vendor@ 268 285 builddir = @builddir@ 269 286 datadir = @datadir@ … … 272 289 dvidir = @dvidir@ 273 290 exec_prefix = @exec_prefix@ 291 host = @host@ 274 292 host_alias = @host_alias@ 293 host_cpu = @host_cpu@ 294 host_os = @host_os@ 295 host_vendor = @host_vendor@ 275 296 htmldir = @htmldir@ 276 297 includedir = @includedir@ -
libcfa/configure
rc59712e rff1e0f38 618 618 CXXFLAGS 619 619 CXX 620 CFA_LIBDIR 621 CFA_BINDIR 622 CFA_INCDIR 623 CFA_PREFIX 624 CFACPP 625 CFACC 626 DRIVER_DIR 627 CONFIGURATION 628 host_os 629 host_vendor 630 host_cpu 631 host 632 build_os 633 build_vendor 634 build_cpu 635 build 620 636 AM_BACKSLASH 621 637 AM_DEFAULT_VERBOSITY … … 693 709 host_alias 694 710 target_alias 711 CONFIGURATION 712 DRIVER_DIR 695 713 CXX 696 714 CXXFLAGS … … 1315 1333 --program-suffix=SUFFIX append SUFFIX to installed program names 1316 1334 --program-transform-name=PROGRAM run sed PROGRAM on installed program names 1335 1336 System types: 1337 --build=BUILD configure for building on BUILD [guessed] 1338 --host=HOST cross-compile to build programs to run on HOST [BUILD] 1317 1339 _ACEOF 1318 1340 fi … … 1336 1358 1337 1359 Some influential environment variables: 1360 CONFIGURATION 1361 The configuration to use when building libcfa, options are: 1362 deubg, nodebug, nolib (prelude-only) 1363 DRIVER_DIR The path to the cforall driver directory 1338 1364 CXX C++ compiler command 1339 1365 CXXFLAGS C++ compiler flags … … 2467 2493 # Allow program name tansformation 2468 2494 # will fill program_transform_name with appropriate sed regex 2495 2496 2497 # Make sure we can run config.sub. 2498 $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || 2499 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 2500 2501 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 2502 $as_echo_n "checking build system type... " >&6; } 2503 if ${ac_cv_build+:} false; then : 2504 $as_echo_n "(cached) " >&6 2505 else 2506 ac_build_alias=$build_alias 2507 test "x$ac_build_alias" = x && 2508 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` 2509 test "x$ac_build_alias" = x && 2510 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 2511 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || 2512 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 2513 2514 fi 2515 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 2516 $as_echo "$ac_cv_build" >&6; } 2517 case $ac_cv_build in 2518 *-*-*) ;; 2519 *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; 2520 esac 2521 build=$ac_cv_build 2522 ac_save_IFS=$IFS; IFS='-' 2523 set x $ac_cv_build 2524 shift 2525 build_cpu=$1 2526 build_vendor=$2 2527 shift; shift 2528 # Remember, the first character of IFS is used to create $*, 2529 # except with old shells: 2530 build_os=$* 2531 IFS=$ac_save_IFS 2532 case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac 2533 2534 2535 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 2536 $as_echo_n "checking host system type... " >&6; } 2537 if ${ac_cv_host+:} false; then : 2538 $as_echo_n "(cached) " >&6 2539 else 2540 if test "x$host_alias" = x; then 2541 ac_cv_host=$ac_cv_build 2542 else 2543 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || 2544 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 2545 fi 2546 2547 fi 2548 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 2549 $as_echo "$ac_cv_host" >&6; } 2550 case $ac_cv_host in 2551 *-*-*) ;; 2552 *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; 2553 esac 2554 host=$ac_cv_host 2555 ac_save_IFS=$IFS; IFS='-' 2556 set x $ac_cv_host 2557 shift 2558 host_cpu=$1 2559 host_vendor=$2 2560 shift; shift 2561 # Remember, the first character of IFS is used to create $*, 2562 # except with old shells: 2563 host_os=$* 2564 IFS=$ac_save_IFS 2565 case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac 2566 2567 2568 2569 2570 2571 2572 CFACC=${DRIVER_DIR}cfa 2573 CFACPP=${DRIVER_DIR}cfa-cpp 2574 2575 2576 2577 #============================================================================== 2578 # Installation paths 2579 if test "x$prefix" = "xNONE"; then 2580 cfa_prefix=${ac_default_prefix} 2581 else 2582 cfa_prefix=${prefix} 2583 fi 2584 2585 cat >>confdefs.h <<_ACEOF 2586 #define CFA_PREFIX "${cfa_prefix}" 2587 _ACEOF 2588 2589 CFA_PREFIX=${cfa_prefix} 2590 2591 2592 if test "$includedir" = '${prefix}/include'; then 2593 cfa_incdir="${cfa_prefix}/include/${cfa_name}" 2594 else 2595 cfa_incdir=${includedir} 2596 fi 2597 2598 cat >>confdefs.h <<_ACEOF 2599 #define CFA_INCDIR "${cfa_incdir}" 2600 _ACEOF 2601 2602 CFA_INCDIR=${cfa_incdir} 2603 2604 2605 if test "$bindir" = '${exec_prefix}/bin'; then 2606 cfa_bindir="${cfa_prefix}/bin" 2607 else 2608 cfa_bindir=${bindir} 2609 fi 2610 2611 cat >>confdefs.h <<_ACEOF 2612 #define CFA_BINDIR "${cfa_bindir}" 2613 _ACEOF 2614 2615 CFA_BINDIR=${cfa_bindir} 2616 2617 2618 if test "$libdir" = '${exec_prefix}/lib'; then 2619 cfa_libdir="${cfa_prefix}/lib/${cfa_name}" 2620 else 2621 cfa_libdir=${libdir} 2622 fi 2623 2624 cat >>confdefs.h <<_ACEOF 2625 #define CFA_LIBDIR "${cfa_libdir}" 2626 _ACEOF 2627 2628 CFA_LIBDIR=${cfa_libdir} 2469 2629 2470 2630 -
libcfa/configure.ac
rc59712e rff1e0f38 16 16 17 17 AC_ARG_VAR(CONFIGURATION, [The configuration to use when building libcfa, options are: deubg, nodebug, nolib (prelude-only)]) 18 AC_ARG_VAR(DRIVER_DIR, [The path to the cforall driver directory]) 19 20 CFACC=${DRIVER_DIR}cfa 21 CFACPP=${DRIVER_DIR}cfa-cpp 22 AC_SUBST(CFACC) 23 AC_SUBST(CFACPP) 24 25 #============================================================================== 26 # Installation paths 27 if test "x$prefix" = "xNONE"; then 28 cfa_prefix=${ac_default_prefix} 29 else 30 cfa_prefix=${prefix} 31 fi 32 AC_DEFINE_UNQUOTED(CFA_PREFIX, "${cfa_prefix}", [Location of cfa install.]) 33 AC_SUBST(CFA_PREFIX, ${cfa_prefix}) 34 35 if test "$includedir" = '${prefix}/include'; then 36 cfa_incdir="${cfa_prefix}/include/${cfa_name}" 37 else 38 cfa_incdir=${includedir} 39 fi 40 AC_DEFINE_UNQUOTED(CFA_INCDIR, "${cfa_incdir}", [Location of include files.]) 41 AC_SUBST(CFA_INCDIR, ${cfa_incdir}) 42 43 if test "$bindir" = '${exec_prefix}/bin'; then 44 cfa_bindir="${cfa_prefix}/bin" 45 else 46 cfa_bindir=${bindir} 47 fi 48 AC_DEFINE_UNQUOTED(CFA_BINDIR, "${cfa_bindir}", [Location of cfa command.]) 49 AC_SUBST(CFA_BINDIR, ${cfa_bindir}) 50 51 if test "$libdir" = '${exec_prefix}/lib'; then 52 cfa_libdir="${cfa_prefix}/lib/${cfa_name}" 53 else 54 cfa_libdir=${libdir} 55 fi 56 AC_DEFINE_UNQUOTED(CFA_LIBDIR, "${cfa_libdir}", [Location of cc1 and cfa-cpp commands.]) 57 AC_SUBST(CFA_LIBDIR, ${cfa_libdir}) 18 58 19 59 # Checks for programs. -
libcfa/prelude/Makefile.am
rc59712e rff1e0f38 33 33 # create extra forward types/declarations to reduce inclusion of library files 34 34 extras.cf : ${srcdir}/extras.regx ${srcdir}/extras.c 35 ${AM_V_GEN} @BACKEND_CC@ @CFA_FLAGS@-E ${srcdir}/extras.c | grep -f ${srcdir}/extras.regx > extras.cf35 ${AM_V_GEN}gcc -E ${srcdir}/extras.c | grep -f ${srcdir}/extras.regx > extras.cf 36 36 37 37 # create forward declarations for gcc builtins 38 38 gcc-builtins.cf : gcc-builtins.c ${srcdir}/prototypes.sed 39 ${AM_V_GEN} @BACKEND_CC@ @CFA_FLAGS@-I${srcdir} -E -P $< | sed -r -f ${srcdir}/prototypes.sed > $@39 ${AM_V_GEN}gcc -I${srcdir} -E -P $< | sed -r -f ${srcdir}/prototypes.sed > $@ 40 40 41 41 gcc-builtins.c : ${srcdir}/builtins.def ${srcdir}/prototypes.awk ${srcdir}/sync-builtins.cf ${srcdir}/prototypes.c 42 ${AM_V_GEN} @BACKEND_CC@ @CFA_FLAGS@-I${srcdir} -E ${srcdir}/prototypes.c | awk -f ${srcdir}/prototypes.awk > $@42 ${AM_V_GEN}gcc -I${srcdir} -E ${srcdir}/prototypes.c | awk -f ${srcdir}/prototypes.awk > $@ 43 43 44 44 prelude.cf : prelude-gen.cc -
libcfa/prelude/Makefile.in
rc59712e rff1e0f38 90 90 PRE_UNINSTALL = : 91 91 POST_UNINSTALL = : 92 build_triplet = @build@ 93 host_triplet = @host@ 92 94 subdir = prelude 93 95 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 162 164 CCASFLAGS = @CCASFLAGS@ 163 165 CCDEPMODE = @CCDEPMODE@ 166 CFACC = @CFACC@ 167 CFACPP = @CFACPP@ 168 CFA_BINDIR = @CFA_BINDIR@ 169 CFA_INCDIR = @CFA_INCDIR@ 170 CFA_LIBDIR = @CFA_LIBDIR@ 171 CFA_PREFIX = @CFA_PREFIX@ 164 172 CFLAGS = @CFLAGS@ 173 CONFIGURATION = @CONFIGURATION@ 165 174 CPPFLAGS = @CPPFLAGS@ 166 175 CXX = @CXX@ … … 170 179 DEFS = @DEFS@ 171 180 DEPDIR = @DEPDIR@ 181 DRIVER_DIR = @DRIVER_DIR@ 172 182 ECHO_C = @ECHO_C@ 173 183 ECHO_N = @ECHO_N@ … … 211 221 am__untar = @am__untar@ 212 222 bindir = @bindir@ 223 build = @build@ 213 224 build_alias = @build_alias@ 225 build_cpu = @build_cpu@ 226 build_os = @build_os@ 227 build_vendor = @build_vendor@ 214 228 builddir = @builddir@ 215 229 datadir = @datadir@ … … 218 232 dvidir = @dvidir@ 219 233 exec_prefix = @exec_prefix@ 234 host = @host@ 220 235 host_alias = @host_alias@ 236 host_cpu = @host_cpu@ 237 host_os = @host_os@ 238 host_vendor = @host_vendor@ 221 239 htmldir = @htmldir@ 222 240 includedir = @includedir@ … … 472 490 # create extra forward types/declarations to reduce inclusion of library files 473 491 extras.cf : ${srcdir}/extras.regx ${srcdir}/extras.c 474 ${AM_V_GEN} @BACKEND_CC@ @CFA_FLAGS@-E ${srcdir}/extras.c | grep -f ${srcdir}/extras.regx > extras.cf492 ${AM_V_GEN}gcc -E ${srcdir}/extras.c | grep -f ${srcdir}/extras.regx > extras.cf 475 493 476 494 # create forward declarations for gcc builtins 477 495 gcc-builtins.cf : gcc-builtins.c ${srcdir}/prototypes.sed 478 ${AM_V_GEN} @BACKEND_CC@ @CFA_FLAGS@-I${srcdir} -E -P $< | sed -r -f ${srcdir}/prototypes.sed > $@496 ${AM_V_GEN}gcc -I${srcdir} -E -P $< | sed -r -f ${srcdir}/prototypes.sed > $@ 479 497 480 498 gcc-builtins.c : ${srcdir}/builtins.def ${srcdir}/prototypes.awk ${srcdir}/sync-builtins.cf ${srcdir}/prototypes.c 481 ${AM_V_GEN} @BACKEND_CC@ @CFA_FLAGS@-I${srcdir} -E ${srcdir}/prototypes.c | awk -f ${srcdir}/prototypes.awk > $@499 ${AM_V_GEN}gcc -I${srcdir} -E ${srcdir}/prototypes.c | awk -f ${srcdir}/prototypes.awk > $@ 482 500 483 501 prelude.cf : prelude-gen.cc -
libcfa/src/Makefile.am
rc59712e rff1e0f38 23 23 24 24 libcfa-prelude.o : libcfa-prelude.c 25 ${AM_V_GEN} @BACKEND_CC@ @CFA_FLAGS@-Wall -O2 -c -o $@ $<25 ${AM_V_GEN}gcc -Wall -O2 -c -o $@ $< 26 26 27 EXTRA_FLAGS = -g -Wall -Wno-unused-function -imacros libcfa-prelude.c @CFA_FLAGS@$(DEFAULT_INCLUDES)27 EXTRA_FLAGS = -g -Wall -Wno-unused-function -imacros libcfa-prelude.c $(DEFAULT_INCLUDES) 28 28 29 AM_CCASFLAGS = @CFA_FLAGS@29 AM_CCASFLAGS = 30 30 31 31 #CFLAGS for most libcfa src 32 32 #use -no-include-stdhdr to prevent rebuild cycles 33 33 #The built sources must not depend on the installed headers 34 CFLAGS = -quiet -no-include-stdhdr @BUILD_IN_TREE_FLAGS@ ${EXTRA_FLAGS}34 CFLAGS = -quiet -no-include-stdhdr -XCFA -t -B@DRIVER_DIR@ ${EXTRA_FLAGS} 35 35 CC = @CFACC@ 36 36 … … 60 60 61 61 concurrency/invoke.o : concurrency/invoke.c 62 ${AM_V_CC} @BACKEND_CC@-DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $<62 ${AM_V_CC}gcc -DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $< 63 63 64 64 exception.o : exception.c 65 ${AM_V_CC} @BACKEND_CC@-DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $<65 ${AM_V_CC}gcc -DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $< 66 66 67 67 virtual.o : virtual.c 68 ${AM_V_CC} @BACKEND_CC@-DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $<68 ${AM_V_CC}gcc -DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $< 69 69 70 70 ${libobjs} : @CFACPP@ ${cfalib_DATA} # add dependency to cfa-cpp so all libraries are rebuilt with new translator -
libcfa/src/Makefile.in
rc59712e rff1e0f38 91 91 PRE_UNINSTALL = : 92 92 POST_UNINSTALL = : 93 build_triplet = @build@ 94 host_triplet = @host@ 93 95 subdir = src 94 96 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 242 244 CCASFLAGS = @CCASFLAGS@ 243 245 CCDEPMODE = @CCDEPMODE@ 246 CFACC = @CFACC@ 247 CFACPP = @CFACPP@ 248 CFA_BINDIR = @CFA_BINDIR@ 249 CFA_INCDIR = @CFA_INCDIR@ 250 CFA_LIBDIR = @CFA_LIBDIR@ 251 CFA_PREFIX = @CFA_PREFIX@ 244 252 245 253 #CFLAGS for most libcfa src 246 254 #use -no-include-stdhdr to prevent rebuild cycles 247 255 #The built sources must not depend on the installed headers 248 CFLAGS = -quiet -no-include-stdhdr @BUILD_IN_TREE_FLAGS@ ${EXTRA_FLAGS} 256 CFLAGS = -quiet -no-include-stdhdr -XCFA -t -B@DRIVER_DIR@ ${EXTRA_FLAGS} 257 CONFIGURATION = @CONFIGURATION@ 249 258 CPPFLAGS = @CPPFLAGS@ 250 259 CXX = @CXX@ … … 254 263 DEFS = @DEFS@ 255 264 DEPDIR = @DEPDIR@ 265 DRIVER_DIR = @DRIVER_DIR@ 256 266 ECHO_C = @ECHO_C@ 257 267 ECHO_N = @ECHO_N@ … … 295 305 am__untar = @am__untar@ 296 306 bindir = @bindir@ 307 build = @build@ 297 308 build_alias = @build_alias@ 309 build_cpu = @build_cpu@ 310 build_os = @build_os@ 311 build_vendor = @build_vendor@ 298 312 builddir = @builddir@ 299 313 datadir = @datadir@ … … 302 316 dvidir = @dvidir@ 303 317 exec_prefix = @exec_prefix@ 318 host = @host@ 304 319 host_alias = @host_alias@ 320 host_cpu = @host_cpu@ 321 host_os = @host_os@ 322 host_vendor = @host_vendor@ 305 323 htmldir = @htmldir@ 306 324 includedir = @includedir@ … … 332 350 ARFLAGS = cr 333 351 lib_LIBRARIES = libcfa.a 334 EXTRA_FLAGS = -g -Wall -Wno-unused-function -imacros libcfa-prelude.c @CFA_FLAGS@$(DEFAULT_INCLUDES)335 AM_CCASFLAGS = @CFA_FLAGS@352 EXTRA_FLAGS = -g -Wall -Wno-unused-function -imacros libcfa-prelude.c $(DEFAULT_INCLUDES) 353 AM_CCASFLAGS = 336 354 337 355 # not all platforms support concurrency, add option do disable it … … 1188 1206 1189 1207 libcfa-prelude.o : libcfa-prelude.c 1190 ${AM_V_GEN} @BACKEND_CC@ @CFA_FLAGS@-Wall -O2 -c -o $@ $<1208 ${AM_V_GEN}gcc -Wall -O2 -c -o $@ $< 1191 1209 1192 1210 # extensionless header files are overridden by -o flag in default makerule => explicitly override default rule to silently do nothing … … 1202 1220 1203 1221 concurrency/invoke.o : concurrency/invoke.c 1204 ${AM_V_CC} @BACKEND_CC@-DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $<1222 ${AM_V_CC}gcc -DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $< 1205 1223 1206 1224 exception.o : exception.c 1207 ${AM_V_CC} @BACKEND_CC@-DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $<1225 ${AM_V_CC}gcc -DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $< 1208 1226 1209 1227 virtual.o : virtual.c 1210 ${AM_V_CC} @BACKEND_CC@-DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $<1228 ${AM_V_CC}gcc -DHAVE_CONFIG_H -I. -I../.. -D__CFA_DEBUG__ -O0 ${EXTRA_FLAGS} -c -o $@ $< 1211 1229 1212 1230 ${libobjs} : @CFACPP@ ${cfalib_DATA} # add dependency to cfa-cpp so all libraries are rebuilt with new translator
Note:
See TracChangeset
for help on using the changeset viewer.