Changeset 90152a4 for driver/Makefile.am
- Timestamp:
- Aug 27, 2018, 4:40:34 PM (8 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
- Children:
- b7c89aa
- Parents:
- f9feab8 (diff), 305581d (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
rf9feab8 r90152a4 11 11 ## Created On : Sun May 31 08:49:31 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Fri Oct 28 13:46:06 201614 ## Update Count : 1 013 ## Last Modified On : Thu Aug 2 12:18:25 2018 14 ## Update Count : 14 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 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 22 # don't install cfa directly 30 23 noinst_PROGRAMS = cfa 31 cfa_SOURCES = cfa.cc32 24 25 # use 33 26 install-exec-hook: 34 27 @test -z "$(CFA_BINDIR)" || $(MKDIR_P) "$(CFA_BINDIR)" … … 40 33 cd "$(CFA_BINDIR)" && rm -f $(CFA_NAME) 41 34 35 cfa_SOURCES = cfa.cc 36 42 37 # put into lib for now 43 38 cc1libdir = ${CFA_LIBDIR} 44 cc1lib_PROGRAMS = cc1 39 cc1lib_PROGRAMS = as cc1 40 as_SOURCES = as.cc 45 41 cc1_SOURCES = cc1.cc 46 42
Note:
See TracChangeset
for help on using the changeset viewer.