Changeset 7cd8827 for driver/Makefile.am
- Timestamp:
- Aug 14, 2018, 4:10:58 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:
- 636e1b9
- Parents:
- c3a8ecd (diff), 5a5d31a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 moved
-
driver/Makefile.am (moved) (moved from src/driver/Makefile.am ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
driver/Makefile.am
rc3a8ecd r7cd8827 15 15 ############################################################################### 16 16 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 18 17 19 # applies to both programs 18 AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src 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 20 AM_CXXFLAGS = @HOST_FLAGS@ -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src 29 21 30 22 # don't install cfa directly … … 45 37 # put into lib for now 46 38 cc1libdir = ${CFA_LIBDIR} 47 cc1lib_PROGRAMS = cc1 39 cc1lib_PROGRAMS = as cc1 40 as_SOURCES = as.cc 48 41 cc1_SOURCES = cc1.cc 49 42 50 aslibdir = ${CFA_LIBDIR}51 aslib_PROGRAMS = as52 as_SOURCES = as.cc53 54 43 MAINTAINERCLEANFILES = $(CFA_BINDIR)/$(CFA_NAME) @CFA_PREFIX@/lib/${cc1lib_PROGRAMS}
Note:
See TracChangeset
for help on using the changeset viewer.