Changeset 7bdcac1 for tools/Makefile.in


Ignore:
Timestamp:
Jun 11, 2018, 10:16:04 AM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
Children:
3fc59bdb
Parents:
85b1deb
Message:

Added the option to make longrun tests run until failure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/Makefile.in

    r85b1deb r7bdcac1  
    9292build_triplet = @build@
    9393host_triplet = @host@
    94 noinst_PROGRAMS = busy$(EXEEXT) catchsig$(EXEEXT) repeat$(EXEEXT)
     94noinst_PROGRAMS = busy$(EXEEXT) catchsig$(EXEEXT) repeat$(EXEEXT) \
     95        watchdog$(EXEEXT)
    9596subdir = tools
    9697ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     
    115116repeat_OBJECTS = $(am_repeat_OBJECTS)
    116117repeat_LDADD = $(LDADD)
     118am_watchdog_OBJECTS = watchdog.$(OBJEXT)
     119watchdog_OBJECTS = $(am_watchdog_OBJECTS)
     120watchdog_LDADD = $(LDADD)
    117121AM_V_P = $(am__v_P_@AM_V@)
    118122am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
     
    143147am__v_CCLD_0 = @echo "  CCLD    " $@;
    144148am__v_CCLD_1 =
    145 SOURCES = $(busy_SOURCES) $(catchsig_SOURCES) $(repeat_SOURCES)
    146 DIST_SOURCES = $(busy_SOURCES) $(catchsig_SOURCES) $(repeat_SOURCES)
     149SOURCES = $(busy_SOURCES) $(catchsig_SOURCES) $(repeat_SOURCES) \
     150        $(watchdog_SOURCES)
     151DIST_SOURCES = $(busy_SOURCES) $(catchsig_SOURCES) $(repeat_SOURCES) \
     152        $(watchdog_SOURCES)
    147153am__can_run_installinfo = \
    148154  case $$AM_UPDATE_INFO_DIR in \
     
    295301catchsig_SOURCES = catchsig.c
    296302repeat_SOURCES = repeat.c
     303watchdog_SOURCES = watchdog.c
    297304all: all-am
    298305
     
    344351        $(AM_V_CCLD)$(LINK) $(repeat_OBJECTS) $(repeat_LDADD) $(LIBS)
    345352
     353watchdog$(EXEEXT): $(watchdog_OBJECTS) $(watchdog_DEPENDENCIES) $(EXTRA_watchdog_DEPENDENCIES)
     354        @rm -f watchdog$(EXEEXT)
     355        $(AM_V_CCLD)$(LINK) $(watchdog_OBJECTS) $(watchdog_LDADD) $(LIBS)
     356
    346357mostlyclean-compile:
    347358        -rm -f *.$(OBJEXT)
     
    353364@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/catchsig.Po@am__quote@
    354365@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/repeat.Po@am__quote@
     366@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/watchdog.Po@am__quote@
    355367
    356368.c.o:
Note: See TracChangeset for help on using the changeset viewer.