summaryrefslogtreecommitdiff
path: root/docs/Makefile.am
blob: 80e678029cbc2cbbc852bf0e2a66d21dda1e3a06 (plain)
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
## Copyright (c) 2001
## The gtkmm development team.

SUBDIRS = images reference internal

EXTRA_DIST = Makefile_web.am_fragment

gtkmm_doc_DATA = 

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: 
	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-local post-html-recursive doc-clean doc-clean-recursive doc-rebuild