File: Makefile.am

package info (click to toggle)
libsigc%2B%2B-2.0 2.0.10-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 20,220 kB
  • ctags: 6,376
  • sloc: sh: 8,402; cpp: 1,717; xml: 368; makefile: 364; perl: 51; ansic: 45
file content (36 lines) | stat: -rw-r--r-- 856 bytes parent folder | download | duplicates (3)
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
## Based on on:

## Copyright (c) 2001
## The gtkmm development team.

SUBDIRS = images reference manual

EXTRA_DIST = Makefile_web.am_fragment index.html

libsigc_doc_DATA = index.html

include $(top_srcdir)/docs/Makefile_web.am_fragment

# Post to the website.

post-html-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) post-html); \
	done

post-html-local: index.html
	scp $$SSH_OPT $^ $$USER@shell.sourceforge.net:$(web_path_docs)

post-html: post-html-recursive post-html-local

doc-clean-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) doc-clean); \
	done

doc-clean: doc-clean-recursive

doc-rebuild: doc-clean all

.PHONY: post-html post-html-recursive doc-clean doc-clean-recursive doc-rebuild