0
|
1 ## Process this file with automake to produce Makefile.in
|
|
2
|
|
3 ACLOCAL_AMFLAGS = -I .. -I ../config
|
|
4 SUBDIRS = testsuite
|
|
5
|
|
6 ## May be used by toolexeclibdir.
|
|
7 gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
|
|
8
|
|
9 config_path = @config_path@
|
|
10 search_path = $(addprefix $(top_srcdir)/config/, $(config_path)) $(top_srcdir)
|
|
11
|
|
12 fincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/finclude
|
|
13 libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
|
|
14
|
|
15 vpath % $(strip $(search_path))
|
|
16
|
|
17 AM_CPPFLAGS = $(addprefix -I, $(search_path))
|
|
18 AM_CFLAGS = $(XCFLAGS)
|
|
19 AM_LDFLAGS = $(XLDFLAGS) $(SECTION_LDFLAGS) $(OPT_LDFLAGS)
|
|
20
|
|
21 toolexeclib_LTLIBRARIES = libgomp.la
|
|
22 nodist_toolexeclib_HEADERS = libgomp.spec
|
|
23
|
|
24 if LIBGOMP_BUILD_VERSIONED_SHLIB
|
|
25 libgomp_version_script = -Wl,--version-script,$(top_srcdir)/libgomp.map
|
|
26 else
|
|
27 libgomp_version_script =
|
|
28 endif
|
|
29 libgomp_version_info = -version-info $(libtool_VERSION)
|
|
30 libgomp_la_LDFLAGS = $(libgomp_version_info) $(libgomp_version_script) \
|
|
31 -no-undefined
|
|
32
|
|
33 libgomp_la_SOURCES = alloc.c barrier.c critical.c env.c error.c iter.c \
|
|
34 iter_ull.c loop.c loop_ull.c ordered.c parallel.c sections.c single.c \
|
|
35 task.c team.c work.c lock.c mutex.c proc.c sem.c bar.c ptrlock.c \
|
|
36 time.c fortran.c affinity.c
|
|
37
|
|
38 nodist_noinst_HEADERS = libgomp_f.h
|
|
39 nodist_libsubinclude_HEADERS = omp.h
|
|
40 if USE_FORTRAN
|
|
41 nodist_finclude_HEADERS = omp_lib.h omp_lib.f90 omp_lib.mod omp_lib_kinds.mod
|
|
42 endif
|
|
43
|
|
44 omp_lib_kinds.mod: omp_lib.mod
|
|
45 :
|
|
46 omp_lib.mod: omp_lib.f90
|
|
47 $(FC) $(FCFLAGS) -fsyntax-only omp_lib.f90
|
|
48 fortran.lo: libgomp_f.h
|
|
49 fortran.o: libgomp_f.h
|
|
50 env.lo: libgomp_f.h
|
|
51 env.o: libgomp_f.h
|
|
52
|
|
53
|
|
54 # No install-html or install-pdf support in automake yet
|
|
55 .PHONY: install-html install-pdf
|
|
56 install-html:
|
|
57
|
|
58 install-pdf: $(PDFS)
|
|
59 @$(NORMAL_INSTALL)
|
|
60 test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)"
|
|
61 @list='$(PDFS)'; for p in $$list; do \
|
|
62 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
63 f=$(am__strip_dir) \
|
|
64 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
|
|
65 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
|
|
66 done
|
|
67
|
|
68 # Automake Documentation:
|
|
69 # If your package has Texinfo files in many directories, you can use the
|
|
70 # variable TEXINFO_TEX to tell Automake where to find the canonical
|
|
71 # `texinfo.tex' for your package. The value of this variable should be
|
|
72 # the relative path from the current `Makefile.am' to `texinfo.tex'.
|
|
73 TEXINFO_TEX = ../gcc/doc/include/texinfo.tex
|
|
74
|
|
75 # Defines info, dvi, pdf and html targets
|
|
76 MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
|
|
77 info_TEXINFOS = libgomp.texi
|
|
78
|
|
79 # AM_CONDITIONAL on configure option --generated-files-in-srcdir
|
|
80 if GENINSRC
|
|
81 STAMP_GENINSRC = stamp-geninsrc
|
|
82 else
|
|
83 STAMP_GENINSRC =
|
|
84 endif
|
|
85
|
|
86 # AM_CONDITIONAL on configure check ACX_CHECK_PROG_VER([MAKEINFO])
|
|
87 if BUILD_INFO
|
|
88 STAMP_BUILD_INFO = stamp-build-info
|
|
89 else
|
|
90 STAMP_BUILD_INFO =
|
|
91 endif
|
|
92
|
|
93
|
|
94 all-local: $(STAMP_GENINSRC)
|
|
95
|
|
96 stamp-geninsrc: libgomp.info
|
|
97 cp -p $(top_builddir)/libgomp.info $(srcdir)/libgomp.info
|
|
98 @touch $@
|
|
99
|
|
100 libgomp.info: $(STAMP_BUILD_INFO)
|
|
101
|
|
102 stamp-build-info: libgomp.texi
|
|
103 $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) -o libgomp.info $(srcdir)/libgomp.texi
|
|
104 @touch $@
|
|
105
|
|
106
|
|
107 CLEANFILES = $(STAMP_GENINSRC) $(STAMP_BUILD_INFO) libgomp.info
|
|
108 MAINTAINERCLEANFILES = $(srcdir)/libgomp.info
|