OSDN Git Service

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