David Robillard
47a41c0d4d
git-svn-id: svn://localhost/ardour2/trunk@2791 d708f5d6-7413-0410-9779-e7cbd77b26cf
22 lines
646 B
Makefile
22 lines
646 B
Makefile
example_dirs = markup options thread iochannel_stream child_watch regex
|
|
|
|
# These use gtkmm stuff:
|
|
# thread
|
|
|
|
SUBDIRS = $(example_dirs)
|
|
EXTRA_DIST = README Makefile.am_fragment
|
|
|
|
#Web upload:
|
|
include $(top_srcdir)/docs/Makefile_web.am_fragment
|
|
|
|
web_path = $(web_path_gtkmm)examples
|
|
|
|
#rsync --cvs-exclude ignores *.o and anything in .cvsignore and some more:
|
|
rsync_options = -vzr --rsh ssh --cvs-exclude --delete-excluded --exclude=.libs --exclude=.deps --exclude=core --exclude=.cvsignore --exclude=a.out --exclude=Makefile --exclude=Makefile.in
|
|
|
|
post-html:
|
|
rsync $(rsync_options) $(example_dirs) $$USER@$(web_host):$(web_path)
|
|
|
|
.PHONY: post-html
|
|
|