Changeset ad17ba6a
- Timestamp:
- Jan 26, 2015, 12:08:14 PM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, 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:
- bdd516a
- Parents:
- 643a2e1
- Files:
-
- 5 deleted
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
r643a2e1 rad17ba6a 37 37 $(top_srcdir)/configure $(top_srcdir)/driver/Makefile.in \ 38 38 $(top_srcdir)/libcfa/Makefile.in \ 39 $(top_srcdir)/translator/Makefile.in AUTHORS COPYING ChangeLog \ 40 INSTALL NEWS install-sh missing mkinstalldirs 39 $(top_srcdir)/translator/Makefile.in \ 40 $(top_srcdir)/translator/examples/Makefile.in AUTHORS COPYING \ 41 ChangeLog INSTALL NEWS install-sh missing mkinstalldirs 41 42 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 42 43 am__aclocal_m4_deps = $(top_srcdir)/configure.in … … 48 49 CONFIG_HEADER = config.h 49 50 CONFIG_CLEAN_FILES = translator/Makefile driver/Makefile \ 50 libcfa/Makefile 51 libcfa/Makefile translator/examples/Makefile 51 52 CONFIG_CLEAN_VPATH_FILES = 52 53 SOURCES = … … 273 274 libcfa/Makefile: $(top_builddir)/config.status $(top_srcdir)/libcfa/Makefile.in 274 275 cd $(top_builddir) && $(SHELL) ./config.status $@ 276 translator/examples/Makefile: $(top_builddir)/config.status $(top_srcdir)/translator/examples/Makefile.in 277 cd $(top_builddir) && $(SHELL) ./config.status $@ 275 278 276 279 # This directory's subdirectories are mostly independent; you can cd -
configure
r643a2e1 rad17ba6a 5000 5000 5001 5001 5002 ac_config_files="$ac_config_files Makefile translator/Makefile driver/Makefile libcfa/Makefile "5002 ac_config_files="$ac_config_files Makefile translator/Makefile driver/Makefile libcfa/Makefile translator/examples/Makefile" 5003 5003 5004 5004 cat >confcache <<\_ACEOF … … 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 5744 5744 5745 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; … … 6471 6472 6472 6473 6473 { $as_echo "$as_me:${as_lineno-$LINENO}: result: The C ForAll translator is now configured for your system" >&56474 $as_echo "The C ForAll translator is now configured for your system" >&6; }6474 { $as_echo "$as_me:${as_lineno-$LINENO}: result: The Cforall translator is now configured for your system" >&5 6475 $as_echo "The Cforall translator is now configured for your system" >&6; } -
configure.in
r643a2e1 rad17ba6a 101 101 AC_SUBST(CFA_LIBDIR) 102 102 103 AC_OUTPUT([ Makefile translator/Makefile driver/Makefile libcfa/Makefile ])103 AC_OUTPUT([ Makefile translator/Makefile driver/Makefile libcfa/Makefile translator/examples/Makefile ]) 104 104 105 105 dnl Final text 106 106 107 AC_MSG_RESULT(The C ForAll translator is now configured for your system)107 AC_MSG_RESULT(The Cforall translator is now configured for your system) 108 108 dnl AC_MSG_RESULT() 109 109 dnl AC_MSG_RESULT(Perhaps you'd like to inspect the created Makefiles) -
translator/SymTab/Validate.cc
r643a2e1 rad17ba6a 195 195 } 196 196 197 HoistStruct::HoistStruct() : 197 HoistStruct::HoistStruct() : inStruct( false ) { 198 198 } 199 199 -
translator/examples/Makefile.in
r643a2e1 rad17ba6a 1 CC =../../bin/cfa2 CFLAGS = -g -W unused-function -MD1 CC := @CFA_BINDIR@/cfa 2 CFLAGS = -g -Wall -Wunused-function -MMD 3 3 MAKEFILE_NAME = ${firstword ${MAKEFILE_LIST}} # makefile name 4 4 … … 31 31 clean : # remove files that can be regenerated 32 32 rm -f ${DEPENDS} ${OBJECTS} ${EXECS} *.class 33 34 distclean : clean
Note: See TracChangeset
for help on using the changeset viewer.