Ignore:
Timestamp:
Jul 7, 2017, 12:06:33 PM (7 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, resolv-new, with_gc
Children:
bf2438c
Parents:
7c03d6d
Message:

Removed configure warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/benchmark/Makefile.in

    r7c03d6d rfab6ded  
    9292build_triplet = @build@
    9393host_triplet = @host@
    94 noinst_PROGRAMS = bench$(EXEEXT) ctxswitch-coroutine$(EXEEXT) \
    95         ctxswitch-thread$(EXEEXT)
    9694subdir = src/benchmark
    9795ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
     
    108106bench_OBJECTS = bench.$(OBJEXT)
    109107bench_LDADD = $(LDADD)
     108csv_data_SOURCES = csv-data.c
     109csv_data_OBJECTS = csv-data.$(OBJEXT)
     110csv_data_LDADD = $(LDADD)
    110111ctxswitch_coroutine_SOURCES = ctxswitch-coroutine.c
    111112ctxswitch_coroutine_OBJECTS = ctxswitch-coroutine.$(OBJEXT)
     
    114115ctxswitch_thread_OBJECTS = ctxswitch-thread.$(OBJEXT)
    115116ctxswitch_thread_LDADD = $(LDADD)
     117monitor_SOURCES = monitor.c
     118monitor_OBJECTS = monitor.$(OBJEXT)
     119monitor_LDADD = $(LDADD)
     120sched_int_SOURCES = sched-int.c
     121sched_int_OBJECTS = sched-int.$(OBJEXT)
     122sched_int_LDADD = $(LDADD)
    116123AM_V_P = $(am__v_P_@AM_V@)
    117124am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
     
    142149am__v_CCLD_0 = @echo "  CCLD    " $@;
    143150am__v_CCLD_1 =
    144 SOURCES = bench.c ctxswitch-coroutine.c ctxswitch-thread.c
    145 DIST_SOURCES = bench.c ctxswitch-coroutine.c ctxswitch-thread.c
     151SOURCES = bench.c csv-data.c ctxswitch-coroutine.c ctxswitch-thread.c \
     152        monitor.c sched-int.c
     153DIST_SOURCES = bench.c csv-data.c ctxswitch-coroutine.c \
     154        ctxswitch-thread.c monitor.c sched-int.c
    146155am__can_run_installinfo = \
    147156  case $$AM_UPDATE_INFO_DIR in \
     
    293302top_srcdir = @top_srcdir@
    294303AM_CFLAGS = -g -Wall -Wno-unused-function -O2
     304noinst_PROGRAMS = bench$(EXEEXT) ctxswitch-coroutine$(EXEEXT) ctxswitch-thread$(EXEEXT) sched-int$(EXEEXT) monitor$(EXEEXT) csv-data$(EXEEXT)
    295305all: all-am
    296306
     
    337347
    338348@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bench.Po@am__quote@
     349@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/csv-data.Po@am__quote@
    339350@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctxswitch-coroutine.Po@am__quote@
    340351@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctxswitch-thread.Po@am__quote@
     352@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/monitor.Po@am__quote@
     353@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sched-int.Po@am__quote@
    341354
    342355.c.o:
     
    559572
    560573
    561 bench :
     574bench$(EXEEXT) :
    562575        @for ccflags in "-debug" "-nodebug"; do \
    563576                echo ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -lrt bench.c;\
     
    567580        rm -f ./a.out ;
    568581
    569 ctxswitch-coroutine:
     582ctxswitch-coroutine$(EXEEXT):
    570583        ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 CorCtxSwitch.c
    571584        @for number in 1 2 3 4 5 6 7 8 9 10; do \
     
    574587        @rm -f ./a.out
    575588
    576 ctxswitch-thread:
     589ctxswitch-thread$(EXEEXT):
    577590        ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 ThrdCtxSwitch.c
    578591        @for number in 1 2 3 4 5 6 7 8 9 10; do \
     
    581594        @rm -f ./a.out
    582595
    583 sched-int:
     596sched-int$(EXEEXT):
    584597        ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 SchedInt.c
    585598        @for number in 1 2 3 4 5 6 7 8 9 10; do \
     
    588601        @rm -f ./a.out
    589602
    590 monitor:
     603monitor$(EXEEXT):
    591604        ${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -DN=10000000 Monitor.c
    592605        @for number in 1 2 3 4 5 6 7 8 9 10; do \
     
    595608        @rm -f ./a.out
    596609
    597 csv-data:
     610csv-data$(EXEEXT):
    598611        @${CC} ${AM_CFLAGS} ${CFLAGS} ${ccflags} @CFA_FLAGS@ -nodebug -lrt -quiet -DN=10000000 csv-data.c
    599612        @./a.out
Note: See TracChangeset for help on using the changeset viewer.