Changeset 24f4671 for src/driver
- Timestamp:
- Dec 13, 2016, 10:53:21 AM (8 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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 3d50aaf
- Parents:
- 2ee5426
- Location:
- src/driver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/driver/Makefile.am ¶
r2ee5426 r24f4671 17 17 # applies to both programs 18 18 AM_CXXFLAGS = -Wall -O2 19 if BUILD_NO_LIB 20 else 21 AM_CXXFLAGS += -DHAVE_LIBCFA 22 endif 23 if BUILD_DEBUG 24 AM_CXXFLAGS += -DHAVE_LIBCFA_DEBUG 25 endif 26 if BUILD_RELEASE 27 AM_CXXFLAGS += -DHAVE_LIBCFA_RELEASE 28 endif 19 29 20 30 bin_PROGRAMS = cfa -
TabularUnified src/driver/Makefile.in ¶
r2ee5426 r24f4671 38 38 build_triplet = @build@ 39 39 host_triplet = @host@ 40 @BUILD_NO_LIB_FALSE@am__append_1 = -DHAVE_LIBCFA 41 @BUILD_DEBUG_TRUE@am__append_2 = -DHAVE_LIBCFA_DEBUG 42 @BUILD_RELEASE_TRUE@am__append_3 = -DHAVE_LIBCFA_RELEASE 40 43 bin_PROGRAMS = cfa$(EXEEXT) 41 44 cc1lib_PROGRAMS = cc1$(EXEEXT) … … 204 207 205 208 # applies to both programs 206 AM_CXXFLAGS = -Wall -O2 209 AM_CXXFLAGS = -Wall -O2 $(am__append_1) $(am__append_2) \ 210 $(am__append_3) 207 211 cfa_SOURCES = cfa.cc 208 212
Note: See TracChangeset
for help on using the changeset viewer.