Changeset 2fbc904
- Timestamp:
- Aug 31, 2020, 3:18:09 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:
- 942453a
- Parents:
- eb67b47
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
reb67b47 r2fbc904 27 27 @ls $(config_file) || (echo "Missing config.data, re-run configure script again" && false) 28 28 @$(eval config_data = $(shell cat $(config_file))) 29 @echo "Configuring libcfa with '$(config_data)''"29 @echo "Configuring libcfa ($(abs_top_srcdir)/libcfa/configure) with '$(config_data)' from $(shell pwd) / $(dir $@)" 30 30 @cd $(dir $@) && $(abs_top_srcdir)/libcfa/configure $(config_data) 31 31 … … 34 34 man1_MANS = doc/man/cfa.1 35 35 36 EXTRA_DIST = LICENSE doc/man/cfa.1 libcfa/configure automakelibcfa/Makefile.dist.am libcfa/Makefile.dist.in36 EXTRA_DIST = LICENSE doc/man/cfa.1 libcfa/configure libcfa/Makefile.dist.am libcfa/Makefile.dist.in 37 37 38 38 debug=yes -
configure.ac
reb67b47 r2fbc904 137 137 \'--enable-gprofiler=*) ;; 138 138 \'--disable-gprofiler) ;; 139 140 # skip this, it only causes problems 141 \'--srcdir=*) ;; 139 142 140 143 # append all other arguments to the sub configure arguments -
libcfa/Makefile.am
reb67b47 r2fbc904 16 16 17 17 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 18 ACLOCAL_AMFLAGS = -I ../automake18 ACLOCAL_AMFLAGS = -I automake 19 19 SUBDIRS = prelude src # order important -
libcfa/configure.ac
reb67b47 r2fbc904 4 4 AC_PREREQ([2.68]) 5 5 AC_INIT([cfa-cc],[1.0.0.0],[cforall@plg.uwaterloo.ca]) 6 AC_CONFIG_AUX_DIR([ ../automake])7 AC_CONFIG_MACRO_DIRS([ ../automake])6 AC_CONFIG_AUX_DIR([automake]) 7 AC_CONFIG_MACRO_DIRS([automake]) 8 8 AM_SILENT_RULES([yes]) 9 9 -
libcfa/prelude/Makefile.am
reb67b47 r2fbc904 17 17 # create object files in directory with source files 18 18 AUTOMAKE_OPTIONS = foreign subdir-objects 19 ACLOCAL_AMFLAGS = -I ../automake19 ACLOCAL_AMFLAGS = -I automake 20 20 21 21 # put into lib for now -
libcfa/src/Makefile.am
reb67b47 r2fbc904 17 17 # create object files in directory with source files 18 18 AUTOMAKE_OPTIONS = foreign subdir-objects 19 ACLOCAL_AMFLAGS = -I ../automake19 ACLOCAL_AMFLAGS = -I automake 20 20 21 21 include $(top_srcdir)/../tools/build/cfa.make … … 32 32 # use -no-include-stdhdr to prevent rebuild cycles 33 33 # The built sources must not depend on the installed inst_headers_src 34 AM_CFAFLAGS = -quiet -cfalib -I$(srcdir)/stdhdr $(if $(findstring ${gdbwaittarget}, ${@}), -XCFA --gdb) @CONFIG_CFAFLAGS@34 AM_CFAFLAGS = -quiet -cfalib -I$(srcdir)/stdhdr -I$(srcdir)/concurrency $(if $(findstring ${gdbwaittarget}, ${@}), -XCFA --gdb) @CONFIG_CFAFLAGS@ 35 35 AM_CFLAGS = -g -Wall -Wno-unused-function -fPIC -fexceptions -pthread @ARCH_FLAGS@ @CONFIG_CFLAGS@ 36 36 AM_CCASFLAGS = -g -Wall -Wno-unused-function @ARCH_FLAGS@ @CONFIG_CFLAGS@
Note: See TracChangeset
for help on using the changeset viewer.