File: Makefile.am

package info (click to toggle)
globus-gsi-proxy-core 7.7-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,576 kB
  • ctags: 301
  • sloc: sh: 11,054; ansic: 4,089; makefile: 142
file content (49 lines) | stat: -rw-r--r-- 1,331 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
include_HEADERS = \
	globus_gsi_proxy.h \
	globus_gsi_proxy_constants.h 
lib_LTLIBRARIES = libglobus_gsi_proxy_core.la

libglobus_gsi_proxy_core_la_CPPFLAGS = \
	-I$(top_builddir) -I$(top_srcdir)/library \
	$(PACKAGE_DEP_CFLAGS)
libglobus_gsi_proxy_core_la_LIBADD = $(PACKAGE_DEP_LIBS)
libglobus_gsi_proxy_core_la_LDFLAGS = \
	-version-info $(MAJOR_VERSION):$(MINOR_VERSION):$(AGE_VERSION) \
        -no-undefined
libglobus_gsi_proxy_core_la_SOURCES = \
	globus_gsi_proxy.h \
	globus_gsi_proxy.c \
	globus_i_gsi_proxy.h \
	globus_gsi_proxy_handle.c \
	globus_gsi_proxy_handle_attrs.c \
	globus_gsi_proxy_constants.h \
	globus_gsi_proxy_error.c 

DOC_STAMPS =
if ENABLE_DOXYGEN
DOC_STAMPS += doc-stamp

doc-stamp: Doxyfile $(libglobus_gsi_proxy_core_la_SOURCES)
	rm -rf doc
	$(DOXYGEN)
	touch $@

clean-local:
	rm -rf doc doc-stamp
endif

all-local: $(DOC_STAMPS)

install-data-local: $(DOC_STAMPS)
	if test -d doc/man/man3; then \
		install -d -m 755 $(DESTDIR)$(mandir)/man3; \
		$(INSTALL) -m 644 doc/man/man3/[Gg][Ll][Oo][Bb][Uu][Ss]*.3 $(DESTDIR)$(mandir)/man3 ; \
	fi
	if test -d doc/html; then \
		for dir in `(cd doc; find html -type d)`; do \
			install -d -m 755 $(DESTDIR)$(docdir)/$$dir; \
		done ; \
		for f in `(cd doc; find html -type f)`; do \
			$(INSTALL) -m 644 doc/$$f $(DESTDIR)$(docdir)/$$f ; \
		done ; \
	fi