OSDN Git Service

* config/i386/mmx.md ("sse2_umulv1siv2di3"): Rename from
[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
32 libgomp_la_SOURCES = alloc.c barrier.c critical.c env.c error.c iter.c \
33         loop.c ordered.c parallel.c sections.c single.c team.c work.c \
34         lock.c mutex.c proc.c sem.c bar.c time.c fortran.c affinity.c
35
36 nodist_noinst_HEADERS = libgomp_f.h
37 nodist_libsubinclude_HEADERS = omp.h
38 if USE_FORTRAN
39 nodist_finclude_HEADERS = omp_lib.h omp_lib.f90 omp_lib.mod omp_lib_kinds.mod
40 endif
41
42 omp_lib_kinds.mod: omp_lib.mod
43         :
44 omp_lib.mod: omp_lib.f90
45         $(FC) $(FCFLAGS) -fsyntax-only omp_lib.f90
46 fortran.lo: libgomp_f.h
47 fortran.o: libgomp_f.h
48 env.lo: libgomp_f.h
49 env.o: libgomp_f.h
50
51
52 # No install-html or install-pdf support in automake yet
53 .PHONY: install-html install-pdf
54 install-html:
55
56 install-pdf: $(PDFS)
57         @$(NORMAL_INSTALL)
58         test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)"
59         @list='$(PDFS)'; for p in $$list; do \
60           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
61           f=$(am__strip_dir) \
62           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
63           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
64         done
65
66 # Automake Documentation:
67 # If your package has Texinfo files in many directories, you can use the
68 # variable TEXINFO_TEX to tell Automake where to find the canonical
69 # `texinfo.tex' for your package. The value of this variable should be
70 # the relative path from the current `Makefile.am' to `texinfo.tex'.
71 TEXINFO_TEX   = ../gcc/doc/include/texinfo.tex
72
73 # Defines info, dvi, pdf and html targets
74 MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
75 info_TEXINFOS = libgomp.texi
76
77 # AM_CONDITIONAL on configure option --generated-files-in-srcdir
78 if GENINSRC
79 STAMP_GENINSRC = stamp-geninsrc
80 else
81 STAMP_GENINSRC =
82 endif
83
84 # AM_CONDITIONAL on configure check ACX_CHECK_PROG_VER([MAKEINFO])
85 if BUILD_INFO
86 STAMP_BUILD_INFO = stamp-build-info
87 else
88 STAMP_BUILD_INFO =
89 endif
90
91
92 all-local: $(STAMP_GENINSRC)
93
94 stamp-geninsrc: libgomp.info
95         cp -p $(top_builddir)/libgomp.info $(srcdir)/libgomp.info
96         @touch $@
97
98 libgomp.info: $(STAMP_BUILD_INFO)
99
100 stamp-build-info: libgomp.texi
101         $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) -o libgomp.info $(srcdir)/libgomp.texi
102         @touch $@
103
104
105 CLEANFILES = $(STAMP_GENINSRC) $(STAMP_BUILD_INFO) libgomp.info
106 MAINTAINERCLEANFILES = $(srcdir)/libgomp.info