OSDN Git Service

2ef2f7ec93b81e5f1162ea458261b45c03b95036
[pf3gnuchains/gcc-fork.git] / libgomp / Makefile.am
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 -bindir "$(bindir)"
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 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
45
46 LINK = $(LIBTOOL) --tag CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
47         $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LTLDFLAGS) -o $@
48
49 omp_lib_kinds.mod: omp_lib.mod
50         :
51 omp_lib.mod: omp_lib.f90
52         $(FC) $(FCFLAGS) -fsyntax-only omp_lib.f90
53 fortran.lo: libgomp_f.h
54 fortran.o: libgomp_f.h
55 env.lo: libgomp_f.h
56 env.o: libgomp_f.h
57
58
59 # No install-html or install-pdf support in automake yet
60 .PHONY: install-html install-pdf
61 install-html:
62
63 install-pdf: $(PDFS)
64         @$(NORMAL_INSTALL)
65         test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)"
66         @list='$(PDFS)'; for p in $$list; do \
67           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
68           f=$(am__strip_dir) \
69           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
70           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
71         done
72
73 # Automake Documentation:
74 # If your package has Texinfo files in many directories, you can use the
75 # variable TEXINFO_TEX to tell Automake where to find the canonical
76 # `texinfo.tex' for your package. The value of this variable should be
77 # the relative path from the current `Makefile.am' to `texinfo.tex'.
78 TEXINFO_TEX   = ../gcc/doc/include/texinfo.tex
79
80 # Defines info, dvi, pdf and html targets
81 MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
82 info_TEXINFOS = libgomp.texi
83
84 # AM_CONDITIONAL on configure option --generated-files-in-srcdir
85 if GENINSRC
86 STAMP_GENINSRC = stamp-geninsrc
87 else
88 STAMP_GENINSRC =
89 endif
90
91 # AM_CONDITIONAL on configure check ACX_CHECK_PROG_VER([MAKEINFO])
92 if BUILD_INFO
93 STAMP_BUILD_INFO = stamp-build-info
94 else
95 STAMP_BUILD_INFO =
96 endif
97
98
99 all-local: $(STAMP_GENINSRC)
100
101 stamp-geninsrc: libgomp.info
102         cp -p $(top_builddir)/libgomp.info $(srcdir)/libgomp.info
103         @touch $@
104
105 libgomp.info: $(STAMP_BUILD_INFO)
106
107 stamp-build-info: libgomp.texi
108         $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) -o libgomp.info $(srcdir)/libgomp.texi
109         @touch $@
110
111
112 CLEANFILES = $(STAMP_GENINSRC) $(STAMP_BUILD_INFO) libgomp.info
113 MAINTAINERCLEANFILES = $(srcdir)/libgomp.info