Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / libcilkrts / Makefile.am
blob70538a21a50646403f45eacbaaab29db4957b92d
1 #  @copyright
2 #  Copyright (C) 2011, 2013, Intel Corporation
3 #  All rights reserved.
4 #  
5 #  @copyright
6 #  Redistribution and use in source and binary forms, with or without
7 #  modification, are permitted provided that the following conditions
8 #  are met:
9 #  
10 #    * Redistributions of source code must retain the above copyright
11 #      notice, this list of conditions and the following disclaimer.
12 #    * Redistributions in binary form must reproduce the above copyright
13 #      notice, this list of conditions and the following disclaimer in
14 #      the documentation and/or other materials provided with the
15 #      distribution.
16 #    * Neither the name of Intel Corporation nor the names of its
17 #      contributors may be used to endorse or promote products derived
18 #      from this software without specific prior written permission.
19 #  
20 #  @copyright
21 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 #  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 #  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 #  HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 #  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 #  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
28 #  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 #  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 #  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
31 #  WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 #  POSSIBILITY OF SUCH DAMAGE.
34 AUTOMAKE_OPTIONS = foreign
36 # Use when building GCC
37 ACLOCAL_AMFLAGS = -I .. -I ../config
39 # Compiler and linker flags.
40 GENERAL_FLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/runtime -I$(top_srcdir)/runtime/config/$(config_dir) -DIN_CILK_RUNTIME=1
41 # GENERAL_FLAGS += -D_Cilk_spawn="" -D_Cilk_sync="" -D_Cilk_for=for
43 # Enable Intel Cilk Plus extension
44 GENERAL_FLAGS += -fcilkplus
46 AM_CFLAGS = $(XCFLAGS) $(GENERAL_FLAGS) -std=c99
47 AM_CPPFLAGS = $(GENERAL_FLAGS)
48 AM_LDFLAGS = $(XLDFLAGS)
50 # May be used by toolexeclibdir.
51 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
53 # Target list.
54 nodist_toolexeclib_HEADERS = libcilkrts.spec
55 toolexeclib_LTLIBRARIES = libcilkrts.la
57 libcilkrts_la_SOURCES =            \
58   runtime/config/$(config_dir)/cilk-abi-vla.c           \
59   runtime/config/$(config_dir)/os-unix-sysdep.c \
60   runtime/bug.cpp                  \
61   runtime/cilk-abi.c               \
62   runtime/cilk-abi-cilk-for.cpp    \
63   runtime/cilk-abi-vla-internal.c  \
64   runtime/cilk_api.c               \
65   runtime/cilk_fiber.cpp           \
66   runtime/cilk_fiber-unix.cpp      \
67   runtime/cilk_malloc.c            \
68   runtime/c_reducers.c             \
69   runtime/except-gcc.cpp           \
70   runtime/frame_malloc.c           \
71   runtime/full_frame.c             \
72   runtime/global_state.cpp         \
73   runtime/jmpbuf.c                 \
74   runtime/local_state.c            \
75   runtime/metacall_impl.c          \
76   runtime/os_mutex-unix.c          \
77   runtime/os-unix.c                \
78   runtime/pedigrees.c              \
79   runtime/record-replay.cpp        \
80   runtime/reducer_impl.cpp         \
81   runtime/scheduler.c              \
82   runtime/signal_node.c            \
83   runtime/spin_mutex.c             \
84   runtime/stats.c                  \
85   runtime/symbol_test.c            \
86   runtime/sysdep-unix.c            \
87   runtime/worker_mutex.c
90 # Load the $(REVISION) value.
91 include include/internal/rev.mk
93 #libcilkrts_la_LDFLAGS  = -rpath '$(libdir)'
94 libcilkrts_la_LDFLAGS = -version-info 5:0:0
95 libcilkrts_la_LDFLAGS += @lt_cv_dlopen_libs@
96 libcilkrts_la_LDFLAGS += $(AM_LDFLAGS)
98 # If we're building on Linux, use the Linux version script
99 if LINUX_LINKER_SCRIPT
100     libcilkrts_la_LDFLAGS += -Wl,--version-script,$(srcdir)/runtime/linux-symbols.ver
101 endif
103 # If we're building on MacOS, use the Mac versioning
104 if MAC_LINKER_SCRIPT
105   libcilkrts_la_LDFLAGS += -Wl,-exported_symbols_list,$(srcdir)/runtime/mac-symbols.txt
106 endif
109 # Hack for Cygwin
110 libcilkrts_la_LDFLAGS += -no-undefined
112 # C/C++ header files for Cilk.
113 # cilkincludedir = $(includedir)/cilk
114 cilkincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include/cilk
115 nodist_cilkinclude_HEADERS =       \
116   include/cilk/cilk_api.h          \
117   include/cilk/cilk_api_linux.h    \
118   include/cilk/cilk.h              \
119   include/cilk/cilk_stub.h         \
120   include/cilk/cilk_undocumented.h \
121   include/cilk/common.h            \
122   include/cilk/holder.h            \
123   include/cilk/hyperobject_base.h  \
124   include/cilk/metaprogramming.h   \
125   include/cilk/reducer_file.h      \
126   include/cilk/reducer.h           \
127   include/cilk/reducer_list.h      \
128   include/cilk/reducer_max.h       \
129   include/cilk/reducer_min.h       \
130   include/cilk/reducer_min_max.h   \
131   include/cilk/reducer_opadd.h     \
132   include/cilk/reducer_opand.h     \
133   include/cilk/reducer_opmul.h     \
134   include/cilk/reducer_opor.h      \
135   include/cilk/reducer_opxor.h     \
136   include/cilk/reducer_ostream.h   \
137   include/cilk/reducer_string.h
140 # Work around what appears to be a GNU make bug handling MAKEFLAGS
141 # values defined in terms of make variables, as is the case for CC and
142 # friends when we are called from the top level Makefile.
143 AM_MAKEFLAGS = \
144        "AR_FLAGS=$(AR_FLAGS)" \
145        "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
146        "CFLAGS=$(CFLAGS)" \
147        "CXXFLAGS=$(CXXFLAGS)" \
148        "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
149        "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
150        "INSTALL=$(INSTALL)" \
151        "INSTALL_DATA=$(INSTALL_DATA)" \
152        "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
153        "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
154        "JC1FLAGS=$(JC1FLAGS)" \
155        "LDFLAGS=$(LDFLAGS)" \
156        "LIBCFLAGS=$(LIBCFLAGS)" \
157        "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
158        "MAKE=$(MAKE)" \
159        "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
160        "PICFLAG=$(PICFLAG)" \
161        "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
162        "SHELL=$(SHELL)" \
163        "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
164        "exec_prefix=$(exec_prefix)" \
165        "infodir=$(infodir)" \
166        "libdir=$(libdir)" \
167        "prefix=$(prefix)" \
168        "includedir=$(includedir)" \
169        "AR=$(AR)" \
170        "AS=$(AS)" \
171        "LD=$(LD)" \
172        "LIBCFLAGS=$(LIBCFLAGS)" \
173        "NM=$(NM)" \
174        "PICFLAG=$(PICFLAG)" \
175        "RANLIB=$(RANLIB)" \
176        "DESTDIR=$(DESTDIR)"
178 MAKEOVERRIDES=