You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
1.3 KiB

  1. SUBDIRS = kernel caca src examples tools \
  2. cxx caca-sharp python ruby java doc
  3. DIST_SUBDIRS = $(SUBDIRS) win32
  4. EXTRA_DIST = NOTES COPYING.GPL COPYING.ISC COPYING.LGPL bootstrap build-dos build-kernel build-win32 build-win64 caca-config.in libcaca.spec libcaca.sln
  5. AUTOMAKE_OPTIONS = dist-bzip2
  6. bin_SCRIPTS = caca-config
  7. webhost = poulet.zoy.org
  8. webdir = /srv/caca.zoy.org/var/www/
  9. doxdir = /srv/caca.zoy.org/var/cache/doxygen/libcaca
  10. upload: upload-source upload-doc
  11. upload-source: FORCE
  12. scp $(distdir).tar.gz $(webhost):$(webdir)/files/
  13. upload-doc: doc/html FORCE
  14. ssh $(webhost) rm -f '$(doxdir)/*' || true
  15. scp -r doc/html/* $(webhost):$(doxdir)/
  16. update-changelog: FORCE
  17. git --help >/dev/null 2>&1 \
  18. && test -d .git \
  19. && 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
  20. update-fonts: tools/makefont
  21. tools/makefont mono9 "Monospace 9" 96 4 >| $(srcdir)/caca/mono9.data
  22. tools/makefont monobold12 "Monospace Bold 12" 96 4 >| $(srcdir)/caca/monobold12.data
  23. echo-dirs: ; echo caca kernel src cxx examples ruby python tools
  24. FORCE: