Changes in benchmark/Makefile.in [38d12e7:41cca44]
- File:
-
- 1 edited
-
benchmark/Makefile.in (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.in
r38d12e7 r41cca44 93 93 host_triplet = @host@ 94 94 noinst_PROGRAMS = 95 @WITH_LIBFIBRE_TRUE@am__append_1 = \ 96 @WITH_LIBFIBRE_TRUE@ ctxswitch-kos_fibre.run \ 97 @WITH_LIBFIBRE_TRUE@ ctxswitch-kos_fibre2.run 98 95 99 subdir = benchmark 96 100 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 … … 256 260 AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names 257 261 CFACOMPILE = $(CFACC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CFAFLAGS) $(CFAFLAGS) $(AM_CFLAGS) $(CFLAGS) 258 LTCFACOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \259 $(LIBTOOLFLAGS) --mode=compile $(CFACC) $(DEFS) \260 $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CFAFLAGS) $(CFAFLAGS) \261 $(AM_CFLAGS) $(CFLAGS)262 263 262 AM_V_CFA = $(am__v_CFA_@AM_V@) 264 263 am__v_CFA_ = $(am__v_CFA_@AM_DEFAULT_V@) … … 278 277 TIME_FORMAT = "%E" 279 278 PRINT_FORMAT = %20s: #Comments needed for spacing 279 CTXSWITCH_DEPEND = loop.run function.run fetch_add.run \ 280 ctxswitch-pthread.run ctxswitch-cfa_coroutine.run \ 281 ctxswitch-cfa_thread.run ctxswitch-cfa_thread2.run \ 282 ctxswitch-upp_coroutine.run ctxswitch-upp_thread.run \ 283 ctxswitch-goroutine.run ctxswitch-java_thread.run \ 284 $(am__append_1) 280 285 testdir = $(top_srcdir)/tests 281 286 all: all-am 282 287 283 288 .SUFFIXES: 284 .SUFFIXES: .cfa . lo .o289 .SUFFIXES: .cfa .o 285 290 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/src/cfa.make $(am__configure_deps) 286 291 @for dep in $?; do \ … … 470 475 471 476 472 .cfa.o: $(CFACC) $(CFACPP)477 .cfa.o: 473 478 $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ 474 479 $(CFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ 475 480 $(am__mv) $$depbase.Tpo $$depbase.Po 476 477 .cfa.lo:478 $(AM_V_CFA)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\479 $(LTCFACOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\480 $(am__mv) $$depbase.Tpo $$depbase.Plo481 482 LIBFIBRE_DIR ?= /home/tdelisle/software/KOS/src/483 481 484 482 .NOTPARALLEL: … … 551 549 $(COMPILE) -DBENCH_N=500000000 fetch_add.c 552 550 553 ctxswitch$(EXEEXT): \ 554 loop.run \ 555 function.run \ 556 fetch_add.run \ 557 ctxswitch-pthread.run \ 558 ctxswitch-cfa_coroutine.run \ 559 ctxswitch-cfa_thread.run \ 560 ctxswitch-cfa_thread2.run \ 561 ctxswitch-upp_coroutine.run \ 562 ctxswitch-upp_thread.run \ 563 -ctxswitch-kos_fibre.run \ 564 -ctxswitch-kos_fibre2.run \ 565 ctxswitch-goroutine.run \ 566 ctxswitch-java_thread.run 551 @WITH_LIBFIBRE_TRUE@ctxswitch-kos_fibre$(EXEEXT): 552 @WITH_LIBFIBRE_TRUE@ @$(CXXCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/kos_fibre.cpp -I$(LIBFIBRE_DIR) -lfibre 553 554 @WITH_LIBFIBRE_TRUE@ctxswitch-kos_fibre2$(EXEEXT): 555 @WITH_LIBFIBRE_TRUE@ @$(CXXCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/kos_fibre2.cpp -I$(LIBFIBRE_DIR) -lfibre 556 557 ctxswitch$(EXEEXT): $(CTXSWITCH_DEPEND) 567 558 568 559 ctxswitch-pthread$(EXEEXT): … … 583 574 ctxswitch-upp_thread$(EXEEXT): 584 575 @$(UPPCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/upp_thrd.cc 585 586 ctxswitch-kos_fibre$(EXEEXT):587 @$(CXXCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/kos_fibre.cpp -I$(LIBFIBRE_DIR) -lfibre588 589 ctxswitch-kos_fibre2$(EXEEXT):590 @$(CXXCOMPILE) -DBENCH_N=50000000 $(srcdir)/ctxswitch/kos_fibre2.cpp -I$(LIBFIBRE_DIR) -lfibre591 576 592 577 ctxswitch-goroutine$(EXEEXT):
Note:
See TracChangeset
for help on using the changeset viewer.