Changeset 76f2e97f
- Timestamp:
- May 21, 2015, 10:05:22 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- 451665cc
- Parents:
- 843054c2
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r843054c2 r76f2e97f 1 SUBDIRS = translator driver libcfa1 SUBDIRS = driver libcfa src 2 2 3 3 # non-source files -
Makefile.in
r843054c2 r76f2e97f 36 36 $(srcdir)/Makefile.in $(srcdir)/config.h.in \ 37 37 $(top_srcdir)/configure $(top_srcdir)/driver/Makefile.in \ 38 $(top_srcdir)/libcfa/Makefile.in \ 39 $(top_srcdir)/translator/Makefile.in \ 40 $(top_srcdir)/translator/examples/Makefile.in AUTHORS INSTALL \ 41 TODO install-sh missing mkinstalldirs 38 $(top_srcdir)/libcfa/Makefile.in $(top_srcdir)/src/Makefile.in \ 39 $(top_srcdir)/src/examples/Makefile.in AUTHORS INSTALL TODO \ 40 install-sh missing mkinstalldirs 42 41 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 43 42 am__aclocal_m4_deps = $(top_srcdir)/configure.in … … 48 47 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs 49 48 CONFIG_HEADER = config.h 50 CONFIG_CLEAN_FILES = translator/Makefile driver/Makefile \51 libcfa/Makefile translator/examples/Makefile49 CONFIG_CLEAN_FILES = src/Makefile driver/Makefile libcfa/Makefile \ 50 src/examples/Makefile 52 51 CONFIG_CLEAN_VPATH_FILES = 53 52 SOURCES = … … 211 210 top_builddir = @top_builddir@ 212 211 top_srcdir = @top_srcdir@ 213 SUBDIRS = translator driver libcfa212 SUBDIRS = driver libcfa src 214 213 215 214 # non-source files … … 268 267 distclean-hdr: 269 268 -rm -f config.h stamp-h1 270 translator/Makefile: $(top_builddir)/config.status $(top_srcdir)/translator/Makefile.in269 src/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/Makefile.in 271 270 cd $(top_builddir) && $(SHELL) ./config.status $@ 272 271 driver/Makefile: $(top_builddir)/config.status $(top_srcdir)/driver/Makefile.in … … 274 273 libcfa/Makefile: $(top_builddir)/config.status $(top_srcdir)/libcfa/Makefile.in 275 274 cd $(top_builddir) && $(SHELL) ./config.status $@ 276 translator/examples/Makefile: $(top_builddir)/config.status $(top_srcdir)/translator/examples/Makefile.in275 src/examples/Makefile: $(top_builddir)/config.status $(top_srcdir)/src/examples/Makefile.in 277 276 cd $(top_builddir) && $(SHELL) ./config.status $@ 278 277 -
configure
r843054c2 r76f2e97f 566 566 PACKAGE_URL='' 567 567 568 ac_unique_file=" translator/main.cc"568 ac_unique_file="src/main.cc" 569 569 # Factoring default headers for most tests. 570 570 ac_includes_default="\ … … 5000 5000 5001 5001 5002 ac_config_files="$ac_config_files Makefile translator/Makefile driver/Makefile libcfa/Makefile translator/examples/Makefile"5002 ac_config_files="$ac_config_files Makefile src/Makefile driver/Makefile libcfa/Makefile src/examples/Makefile" 5003 5003 5004 5004 cat >confcache <<\_ACEOF … … 5738 5738 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; 5739 5739 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 5740 " translator/Makefile") CONFIG_FILES="$CONFIG_FILES translator/Makefile" ;;5740 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; 5741 5741 "driver/Makefile") CONFIG_FILES="$CONFIG_FILES driver/Makefile" ;; 5742 5742 "libcfa/Makefile") CONFIG_FILES="$CONFIG_FILES libcfa/Makefile" ;; 5743 " translator/examples/Makefile") CONFIG_FILES="$CONFIG_FILES translator/examples/Makefile" ;;5743 "src/examples/Makefile") CONFIG_FILES="$CONFIG_FILES src/examples/Makefile" ;; 5744 5744 5745 5745 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; -
configure.in
r843054c2 r76f2e97f 1 1 AC_INIT(cfa-cc, 1.0, cforall@plg.uwaterloo.ca) 2 AC_CONFIG_SRCDIR([ translator/main.cc])2 AC_CONFIG_SRCDIR([src/main.cc]) 3 3 4 4 AM_INIT_AUTOMAKE([foreign]) # do not follow GNU standard … … 101 101 AC_SUBST(CFA_LIBDIR) 102 102 103 AC_OUTPUT([ Makefile translator/Makefile driver/Makefile libcfa/Makefile translator/examples/Makefile ])103 AC_OUTPUT([ Makefile src/Makefile driver/Makefile libcfa/Makefile src/examples/Makefile ]) 104 104 105 105 dnl Final text -
libcfa/Makefile.in
r843054c2 r76f2e97f 11 11 ## Created On : Sat May 16 08:05:18 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Sat May 16 08:06:05201514 ## Update Count : 113 ## Last Modified On : Thu May 21 22:00:51 2015 14 ## Update Count : 3 15 15 ############################################################################### 16 16 17 17 INSTALL=@INSTALL@ 18 18 BACKEND_CC := @BACKEND_CC@ 19 CFA_LIBDIR = @CFA_LIBDIR@ 19 20 20 21 LIBRARIES := libcfa.a builtins.cf builtins.c … … 35 36 ${INSTALL} builtins.cf @CFA_LIBDIR@ 36 37 37 libcfa-prelude.c: ../translator/cfa-cpp prelude.cf builtins.cf38 libcfa-prelude.c: @CFA_LIBDIR@/cfa-cpp prelude.cf builtins.cf 38 39 sed -i -e "s#typedef.*ptrdiff_t.*#`@BACKEND_CC@ -E ptrdiff_t.c | grep 'typedef.*ptrdiff_t'`#" prelude.cf 39 ../translator/cfa-cpp -l prelude.cf $@40 @CFA_LIBDIR@/cfa-cpp -l prelude.cf $@ 40 41 rm -f prelude.c 41 42
Note: See TracChangeset
for help on using the changeset viewer.