File: Makefile.am

package info (click to toggle)
massivethreads 1.02-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,924 kB
  • sloc: ansic: 27,814; sh: 4,559; cpp: 3,334; javascript: 1,799; makefile: 1,745; python: 523; asm: 373; perl: 118; lisp: 9
file content (14 lines) | stat: -rw-r--r-- 783 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#noinst_PROGRAMS = bin_serial bin_mth_native bin_mth_compat
check_PROGRAMS = bin_serial bin_mth_native bin_mth_compat
bin_serial_SOURCES     = bin.cc
bin_mth_native_SOURCES = bin.cc
bin_mth_compat_SOURCES = bin.cc

bin_serial_CXXFLAGS     = -I$(abs_top_srcdir)/include -I$(abs_top_srcdir)/src/profiler -I$(abs_top_srcdir)/src/mtbb -std=c++0x -DTO_SERIAL
bin_mth_native_CXXFLAGS = -I$(abs_top_srcdir)/include -I$(abs_top_srcdir)/src/profiler -I$(abs_top_srcdir)/src/mtbb -std=c++0x -DTO_MTHREAD_NATIVE
bin_mth_compat_CXXFLAGS = -I$(abs_top_srcdir)/include -I$(abs_top_srcdir)/src/profiler -I$(abs_top_srcdir)/src/mtbb -std=c++0x -DTO_MTHREAD

bin_mth_native_LDADD = $(abs_top_srcdir)/src/libmyth.la 
bin_mth_compat_LDADD = $(abs_top_srcdir)/src/libmyth.la 

TESTS = $(check_PROGRAMS)