]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgomp/Makefile.am
libgomp.texi: Note to 'Memory allocation' sect and missing mem-memory routines
[thirdparty/gcc.git] / libgomp / Makefile.am
CommitLineData
953ff289
DN
1## Process this file with automake to produce Makefile.in
2
22e05272 3AUTOMAKE_OPTIONS = info-in-builddir
6b2c5ce0 4ACLOCAL_AMFLAGS = -I .. -I ../config
953ff289
DN
5SUBDIRS = testsuite
6
7## May be used by toolexeclibdir.
3c36aa6b 8gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
953ff289
DN
9
10config_path = @config_path@
41dbbb37
TS
11search_path = $(addprefix $(top_srcdir)/config/, $(config_path)) $(top_srcdir) \
12 $(top_srcdir)/../include
953ff289 13
c508bc2d 14fincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)$(MULTISUBDIR)/finclude
571d5ac5 15libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
dd8d6dfe 16
d683ec81 17vpath % $(strip $(search_path))
953ff289
DN
18
19AM_CPPFLAGS = $(addprefix -I, $(search_path))
20AM_CFLAGS = $(XCFLAGS)
21AM_LDFLAGS = $(XLDFLAGS) $(SECTION_LDFLAGS) $(OPT_LDFLAGS)
22
23toolexeclib_LTLIBRARIES = libgomp.la
24nodist_toolexeclib_HEADERS = libgomp.spec
25
26if LIBGOMP_BUILD_VERSIONED_SHLIB
cc2de92d
RO
27# -Wc is only a libtool option.
28comma = ,
29PREPROCESS = $(subst -Wc$(comma), , $(COMPILE)) -E
30
31libgomp.ver: $(top_srcdir)/libgomp.map
32 $(EGREP) -v '#(#| |$$)' $< | \
33 $(PREPROCESS) -P -include config.h - > $@ || (rm -f $@ ; exit 1)
34
6d28b933 35if LIBGOMP_BUILD_VERSIONED_SHLIB_GNU
cc2de92d
RO
36libgomp_version_script = -Wl,--version-script,libgomp.ver
37libgomp_version_dep = libgomp.ver
6d28b933
RO
38endif
39if LIBGOMP_BUILD_VERSIONED_SHLIB_SUN
cc2de92d
RO
40libgomp_version_script = -Wl,-M,libgomp.ver-sun
41libgomp_version_dep = libgomp.ver-sun
42libgomp.ver-sun : libgomp.ver \
6d28b933
RO
43 $(top_srcdir)/../contrib/make_sunver.pl \
44 $(libgomp_la_OBJECTS) $(libgomp_la_LIBADD)
45 perl $(top_srcdir)/../contrib/make_sunver.pl \
cc2de92d 46 libgomp.ver \
6d28b933
RO
47 $(libgomp_la_OBJECTS:%.lo=.libs/%.o) \
48 `echo $(libgomp_la_LIBADD) | \
49 sed 's,/\([^/.]*\)\.la,/.libs/\1.a,g'` \
50 > $@ || (rm -f $@ ; exit 1)
51endif
953ff289
DN
52else
53libgomp_version_script =
6d28b933 54libgomp_version_dep =
953ff289
DN
55endif
56libgomp_version_info = -version-info $(libtool_VERSION)
6528b88d 57libgomp_la_LDFLAGS = $(libgomp_version_info) $(libgomp_version_script) \
7de6ba7a 58 $(lt_host_flags)
dcc26679 59libgomp_la_LIBADD =
6d28b933 60libgomp_la_DEPENDENCIES = $(libgomp_version_dep)
878f62e5 61libgomp_la_LINK = $(LINK) $(libgomp_la_LDFLAGS)
953ff289 62
6103184e
AM
63libgomp_la_SOURCES = alloc.c atomic.c barrier.c critical.c env.c error.c \
64 icv.c icv-device.c iter.c iter_ull.c loop.c loop_ull.c ordered.c \
e45483c7
JJ
65 parallel.c scope.c sections.c single.c task.c team.c work.c lock.c \
66 mutex.c proc.c sem.c bar.c ptrlock.c time.c fortran.c affinity.c \
67 target.c splay-tree.c libgomp-plugin.c oacc-parallel.c oacc-host.c \
68 oacc-init.c oacc-mem.c oacc-async.c oacc-plugin.c oacc-cuda.c \
69 priority_queue.c affinity-fmt.c teams.c allocator.c oacc-profiling.c \
70 oacc-target.c
41dbbb37
TS
71
72include $(top_srcdir)/plugin/Makefrag.am
73
74if USE_FORTRAN
75libgomp_la_SOURCES += openacc.f90
76endif
953ff289
DN
77
78nodist_noinst_HEADERS = libgomp_f.h
5fae049d 79nodist_libsubinclude_HEADERS = omp.h openacc.h acc_prof.h
953ff289 80if USE_FORTRAN
41dbbb37
TS
81nodist_finclude_HEADERS = omp_lib.h omp_lib.f90 omp_lib.mod omp_lib_kinds.mod \
82 openacc_lib.h openacc.f90 openacc.mod openacc_kinds.mod
953ff289
DN
83endif
84
479c15c2
NF
85LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
86
84fec8a5
RW
87LINK = $(LIBTOOL) --tag CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
88 $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LTLDFLAGS) -o $@
479c15c2 89
953ff289
DN
90omp_lib_kinds.mod: omp_lib.mod
91 :
41dbbb37
TS
92openacc_kinds.mod: openacc.mod
93 :
94openacc.mod: openacc.lo
95 :
96%.mod: %.f90
10508db8 97 $(FC) $(FCFLAGS) -cpp -fopenmp -fsyntax-only $<
953ff289
DN
98fortran.lo: libgomp_f.h
99fortran.o: libgomp_f.h
100env.lo: libgomp_f.h
101env.o: libgomp_f.h
6667de0d 102
3721b9e1 103
3721b9e1
DF
104# Automake Documentation:
105# If your package has Texinfo files in many directories, you can use the
106# variable TEXINFO_TEX to tell Automake where to find the canonical
107# `texinfo.tex' for your package. The value of this variable should be
108# the relative path from the current `Makefile.am' to `texinfo.tex'.
109TEXINFO_TEX = ../gcc/doc/include/texinfo.tex
110
111# Defines info, dvi, pdf and html targets
112MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
113info_TEXINFOS = libgomp.texi
114
115# AM_CONDITIONAL on configure option --generated-files-in-srcdir
116if GENINSRC
117STAMP_GENINSRC = stamp-geninsrc
118else
119STAMP_GENINSRC =
120endif
121
748b9d7c
DF
122# AM_CONDITIONAL on configure check ACX_CHECK_PROG_VER([MAKEINFO])
123if BUILD_INFO
124STAMP_BUILD_INFO = stamp-build-info
125else
126STAMP_BUILD_INFO =
127endif
128
129
3721b9e1
DF
130all-local: $(STAMP_GENINSRC)
131
132stamp-geninsrc: libgomp.info
748b9d7c
DF
133 cp -p $(top_builddir)/libgomp.info $(srcdir)/libgomp.info
134 @touch $@
135
136libgomp.info: $(STAMP_BUILD_INFO)
137
138stamp-build-info: libgomp.texi
139 $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) -o libgomp.info $(srcdir)/libgomp.texi
140 @touch $@
141
3721b9e1 142
22e05272 143CLEANFILES = $(STAMP_GENINSRC) $(STAMP_BUILD_INFO)
3721b9e1 144MAINTAINERCLEANFILES = $(srcdir)/libgomp.info
22e05272 145
47ddb895 146# target overrides
0164e598 147-include $(tmake_file)
47ddb895 148
22e05272 149include $(top_srcdir)/../multilib.am