Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

36 righe
1004 B

  1. include $(top_srcdir)/build/autotools/common.am
  2. SUBDIRS = kernel caca src examples tools \
  3. cxx caca-sharp python ruby java doc
  4. DIST_SUBDIRS = $(SUBDIRS) build
  5. EXTRA_DIST = NOTES COPYING.GPL COPYING.ISC COPYING.LGPL bootstrap caca-config.in libcaca.spec libcaca.sln
  6. AUTOMAKE_OPTIONS = dist-bzip2
  7. bin_SCRIPTS = caca-config
  8. webhost = poulet.zoy.org
  9. webdir = /srv/caca.zoy.org/var/www/
  10. doxdir = /srv/caca.zoy.org/var/cache/doxygen/libcaca
  11. upload: upload-source upload-doc
  12. upload-source: FORCE
  13. scp $(distdir).tar.gz $(webhost):$(webdir)/files/
  14. upload-doc: doc/html FORCE
  15. ssh $(webhost) rm -f '$(doxdir)/*' || true
  16. scp -r doc/html/* $(webhost):$(doxdir)/
  17. update-fonts: tools/makefont
  18. tools/makefont mono9 "Monospace 9" 96 4 >| $(srcdir)/caca/mono9.data
  19. tools/makefont monobold12 "Monospace Bold 12" 96 4 >| $(srcdir)/caca/monobold12.data
  20. # Travis CI uses “make test” instead of “make check”
  21. test: check
  22. echo-dirs: ; echo caca kernel src cxx examples ruby python tools
  23. FORCE: