Last change
on this file since 4361 was
4361,
checked in by Sam Hocevar, 13 years ago
|
Remove "test" from the list of source directories.
|
File size:
889 bytes
|
Line | |
---|
1 | |
---|
2 | SUBDIRS = src doc test |
---|
3 | DIST_SUBDIRS = $(SUBDIRS) data |
---|
4 | |
---|
5 | EXTRA_DIST = bootstrap |
---|
6 | AUTOMAKE_OPTIONS = foreign dist-bzip2 |
---|
7 | |
---|
8 | webhost = poulet.zoy.org |
---|
9 | webdir = /srv/caca.zoy.org/var/www/ |
---|
10 | doxdir = /srv/caca.zoy.org/var/cache/doxygen/neercs |
---|
11 | |
---|
12 | upload: upload-source upload-doc |
---|
13 | |
---|
14 | upload-source: FORCE |
---|
15 | scp $(distdir).tar.gz $(webhost):$(webdir)/files/ |
---|
16 | |
---|
17 | upload-doc: doc/html FORCE |
---|
18 | ssh $(webhost) rm -f '$(doxdir)/*' || true |
---|
19 | scp -r doc/html/* $(webhost):$(doxdir)/ |
---|
20 | |
---|
21 | update-changelog: FORCE |
---|
22 | git --help >/dev/null 2>&1 \ |
---|
23 | && test -d .git \ |
---|
24 | && git log --stat | awk 'function flush() { if (m != "") { print "Commit: " v "\nAuthor: " a m } m=""; v="UNSUBMITTED" } { if ($$1 == "commit") flush(); else if ($$1 == "Author:") { a = $$2 } else if ($$1 == "git-svn-id:") { split($$2,tmp,"@"); v=tmp[2] } else if ($$_ != " ") { m=m "\n" $$_ } } END { flush() }' > ChangeLog |
---|
25 | |
---|
26 | echo-dirs: ; echo src |
---|
27 | |
---|
28 | FORCE: |
---|
Note: See
TracBrowser
for help on using the repository browser.