Changeset ad17ba6a


Ignore:
Timestamp:
Jan 26, 2015, 12:08:14 PM (10 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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
Message:

generalize example Makefile

Files:
5 deleted
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • Makefile.in

    r643a2e1 rad17ba6a  
    3737        $(top_srcdir)/configure $(top_srcdir)/driver/Makefile.in \
    3838        $(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
    4142ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
    4243am__aclocal_m4_deps = $(top_srcdir)/configure.in
     
    4849CONFIG_HEADER = config.h
    4950CONFIG_CLEAN_FILES = translator/Makefile driver/Makefile \
    50         libcfa/Makefile
     51        libcfa/Makefile translator/examples/Makefile
    5152CONFIG_CLEAN_VPATH_FILES =
    5253SOURCES =
     
    273274libcfa/Makefile: $(top_builddir)/config.status $(top_srcdir)/libcfa/Makefile.in
    274275        cd $(top_builddir) && $(SHELL) ./config.status $@
     276translator/examples/Makefile: $(top_builddir)/config.status $(top_srcdir)/translator/examples/Makefile.in
     277        cd $(top_builddir) && $(SHELL) ./config.status $@
    275278
    276279# This directory's subdirectories are mostly independent; you can cd
  • configure

    r643a2e1 rad17ba6a  
    50005000
    50015001
    5002 ac_config_files="$ac_config_files Makefile translator/Makefile driver/Makefile libcfa/Makefile"
     5002ac_config_files="$ac_config_files Makefile translator/Makefile driver/Makefile libcfa/Makefile translator/examples/Makefile"
    50035003
    50045004cat >confcache <<\_ACEOF
     
    57415741    "driver/Makefile") CONFIG_FILES="$CONFIG_FILES driver/Makefile" ;;
    57425742    "libcfa/Makefile") CONFIG_FILES="$CONFIG_FILES libcfa/Makefile" ;;
     5743    "translator/examples/Makefile") CONFIG_FILES="$CONFIG_FILES translator/examples/Makefile" ;;
    57435744
    57445745  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
     
    64716472
    64726473
    6473 { $as_echo "$as_me:${as_lineno-$LINENO}: result: The CForAll translator is now configured for your system" >&5
    6474 $as_echo "The CForAll 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  
    101101AC_SUBST(CFA_LIBDIR)
    102102
    103 AC_OUTPUT([ Makefile translator/Makefile driver/Makefile libcfa/Makefile ])
     103AC_OUTPUT([ Makefile translator/Makefile driver/Makefile libcfa/Makefile translator/examples/Makefile ])
    104104
    105105dnl Final text
    106106
    107 AC_MSG_RESULT(The CForAll translator is now configured for your system)
     107AC_MSG_RESULT(The Cforall translator is now configured for your system)
    108108dnl AC_MSG_RESULT()
    109109dnl AC_MSG_RESULT(Perhaps you'd like to inspect the created Makefiles)
  • translator/SymTab/Validate.cc

    r643a2e1 rad17ba6a  
    195195    }
    196196
    197     HoistStruct::HoistStruct() :  inStruct( false ) {
     197    HoistStruct::HoistStruct() : inStruct( false ) {
    198198    }
    199199
  • translator/examples/Makefile.in

    r643a2e1 rad17ba6a  
    1 CC=../../bin/cfa
    2 CFLAGS = -g -Wunused-function -MD
     1CC := @CFA_BINDIR@/cfa
     2CFLAGS = -g -Wall -Wunused-function -MMD
    33MAKEFILE_NAME = ${firstword ${MAKEFILE_LIST}}   # makefile name
    44
     
    3131clean :                                         # remove files that can be regenerated
    3232        rm -f ${DEPENDS} ${OBJECTS} ${EXECS} *.class
     33
     34distclean : clean
Note: See TracChangeset for help on using the changeset viewer.